mirror of
https://github.com/sim1222/misskey.git
synced 2025-08-06 08:43:56 +09:00
11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import * as Bull from 'bull';
|
|
import { deleteObjectStorageFile } from '../../../services/drive/delete-file';
|
|
|
|
export default async (job: Bull.Job) => {
|
|
const key: string = job.data.key;
|
|
|
|
await deleteObjectStorageFile(key);
|
|
|
|
return 'Success';
|
|
};
|