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