Adrià Vilanova Martínez | c78c3ad | 2024-05-18 00:35:51 +0200 | [diff] [blame] | 1 | import Feature from '../../common/architecture/features/Feature'; |
| 2 | import { ConcreteScript } from '../../common/architecture/scripts/Script'; |
Adrià Vilanova Martínez | b523be9 | 2024-05-25 19:14:19 +0200 | [diff] [blame] | 3 | import { OptionCodename } from '../../common/options/optionsPrototype'; |
Adrià Vilanova Martínez | c78c3ad | 2024-05-18 00:35:51 +0200 | [diff] [blame] | 4 | import WorkflowsDependenciesSetUpAtMainScript from './scripts/dependenciesSetUpAtMain.script'; |
| 5 | import WorkflowsDependenciesSetUpAtStartScript from './scripts/dependenciesSetUpAtStart.script'; |
| 6 | import WorkflowsNodeWatcherScript from './scripts/nodeWatcher.script'; |
| 7 | |
| 8 | export default class WorkflowsFeature extends Feature { |
| 9 | public readonly scripts: ConcreteScript[] = [ |
| 10 | WorkflowsDependenciesSetUpAtStartScript, |
| 11 | WorkflowsDependenciesSetUpAtMainScript, |
| 12 | WorkflowsNodeWatcherScript, |
| 13 | ]; |
| 14 | |
| 15 | readonly codename = 'workflows'; |
| 16 | readonly relatedOptions: OptionCodename[] = ['workflows']; |
| 17 | } |