@hadyfayed/filament-workflow-canvas
Version:
Visual workflow builder and canvas component for Filament applications
15 lines (13 loc) • 573 B
text/typescript
/**
* Workflow Services - Barrel export for all services
* Following Single Responsibility and Dependency Inversion Principles
*/
export { WorkflowManagerService } from './WorkflowManagerService';
export { NodeManagerService } from './NodeManagerService';
export { ConnectionManagerService } from './ConnectionManagerService';
export { ViewportManagerService } from './ViewportManagerService';
export { WorkflowEventService } from './WorkflowEventService';
export {
LocalStorageWorkflowPersistence,
MemoryWorkflowPersistence,
} from './WorkflowPersistenceService';