diff options
Diffstat (limited to 'src/queue/processors/object-storage/delete-file.ts')
| -rw-r--r-- | src/queue/processors/object-storage/delete-file.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/queue/processors/object-storage/delete-file.ts b/src/queue/processors/object-storage/delete-file.ts index 31050998af..08f2977816 100644 --- a/src/queue/processors/object-storage/delete-file.ts +++ b/src/queue/processors/object-storage/delete-file.ts @@ -1,6 +1,6 @@ -import { ObjectStorageFileJobData } from '@/queue/types'; +import { ObjectStorageFileJobData } from '@/queue/types.js'; import * as Bull from 'bull'; -import { deleteObjectStorageFile } from '../../../services/drive/delete-file'; +import { deleteObjectStorageFile } from '@/services/drive/delete-file.js'; export default async (job: Bull.Job<ObjectStorageFileJobData>) => { const key: string = job.data.key; |