feat: implement BackupTransferRunner for managing backup processes and enhance backup handling

This commit is contained in:
shuaiplus
2026-06-07 20:43:43 +08:00
parent bfea5d0a1c
commit af70cab766
6 changed files with 466 additions and 169 deletions
+2
View File
@@ -1,5 +1,6 @@
import { Env } from './types';
import { NotificationsHub } from './durable/notifications-hub';
import { BackupTransferRunner } from './durable/backup-transfer-runner';
import { handleRequest } from './router';
import { StorageService } from './services/storage';
import { applyCors, jsonResponse } from './utils/response';
@@ -127,3 +128,4 @@ export default {
};
export { NotificationsHub };
export { BackupTransferRunner };