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:
parent
1c1a447510
commit
4cb1ae13e4
@ -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.');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user