first-update

This commit is contained in:
2026-03-17 14:36:31 +08:00
parent 72f08aee7c
commit 4eddf05e79
516 changed files with 115270 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
/**
* 全局常量
*/
export const FILE = {
MAX_FILE_SIZE: 300 * 1024 * 1024 // 300MB in bytes
};
export const TASK = {
STATUS: {
PROCESSING: 0,
COMPLETED: 1,
FAILED: 2
}
};