12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
/**
|
|
* Workflow Step Executors — import all to register them with the engine.
|
|
* This file must be imported once when the ticket workflow engine is used.
|
|
*/
|
|
|
|
import './classify';
|
|
import './validate';
|
|
import './ai-classify';
|
|
import './ai-title';
|
|
import './ai-troubleshooting';
|
|
import './delay';
|
|
import './update-ticket';
|