1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-10-13 11:17:26 +02:00

feat: skeleton of process feature createdby id task

This commit is contained in:
David Leek 2024-01-17 15:38:35 +01:00
parent 1c1a447510
commit 4cb1ae13e4
No known key found for this signature in database
GPG Key ID: 515EE0F1BB6D0BE1

View File

@ -0,0 +1,16 @@
import { IUnleashServices } from '../../../server-impl';
import { IStartupTask } from '../startup-task-service';
export class ProcessFeatureCreatedByIdTask implements IStartupTask {
constructor(services: IUnleashServices) {}
shouldRun(): Promise<boolean> {
return Promise.resolve(false);
}
run(): Promise<void> {
throw new Error('Method not implemented.');
}
stop(): Promise<void> {
throw new Error('Method not implemented.');
}
}