summaryrefslogtreecommitdiff
path: root/src/queue/processors/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/queue/processors/index.ts')
-rw-r--r--src/queue/processors/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/queue/processors/index.ts b/src/queue/processors/index.ts
index 6869983205..31e87c3f67 100644
--- a/src/queue/processors/index.ts
+++ b/src/queue/processors/index.ts
@@ -1,5 +1,7 @@
import deliver from './http/deliver';
import processInbox from './http/process-inbox';
+import { deleteNotes } from './delete-notes';
+import { deleteDriveFiles } from './delete-drive-files';
import { exportNotes } from './export-notes';
import { exportFollowing } from './export-following';
import { exportMute } from './export-mute';
@@ -9,6 +11,8 @@ import { queueLogger } from '../logger';
const handlers: any = {
deliver,
processInbox,
+ deleteNotes,
+ deleteDriveFiles,
exportNotes,
exportFollowing,
exportMute,