Split workspace service (#13642)

Splits workflow-version-step workspace-service into multiple once
This commit is contained in:
martmull
2025-08-05 16:10:11 +02:00
committed by GitHub
parent d62a1e0b5a
commit 44f5600300
19 changed files with 643 additions and 471 deletions
@@ -0,0 +1,8 @@
import { CustomException } from 'src/utils/custom-exception';
export class WorkflowVersionEdgeException extends CustomException<WorkflowVersionEdgeExceptionCode> {}
export enum WorkflowVersionEdgeExceptionCode {
UNKNOWN = 'UNKNOWN',
NOT_FOUND = 'NOT_FOUND',
}