implement creating files.

This commit is contained in:
2025-05-11 22:08:40 +08:00
parent d97247159f
commit 5af84dbcf3
3 changed files with 303 additions and 36 deletions

View File

@@ -0,0 +1,10 @@
import {Response} from "./models.ts";
class UploadingManager {
async addTask(file: File, resourceID: number, storageID: number, description: string): Promise<Response<void>> {
// TODO: implement this
throw new Error("Not implemented");
}
}
export const uploadingManager = new UploadingManager();