Import the committed KnowledgeFS snapshot dc4072ee302317145612087ce7440851dc329fd0 under knowledge-fs/ without its Git history, local IDE settings, or build artifacts.
8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
import { createUploadDocumentRedirectHandler } from "../../../lib/upload-action";
|
|
|
|
const handler = createUploadDocumentRedirectHandler();
|
|
|
|
export async function POST(request: Request): Promise<Response> {
|
|
return handler.handle(request);
|
|
}
|