diff --git a/apps/backend/orchestrator/src/index.ts b/apps/backend/orchestrator/src/index.ts index 4bdf95f..7eb919a 100644 --- a/apps/backend/orchestrator/src/index.ts +++ b/apps/backend/orchestrator/src/index.ts @@ -2,7 +2,6 @@ * @delego/orchestrator — Workflow coordination */ import { createLogger, startHttpServer } from "@delego/utils"; -import { purchaseWorkflow } from "../workflows/purchase/index.js"; const SERVICE_NAME = "orchestrator"; const DEFAULT_PORT = 3010; @@ -22,6 +21,6 @@ startHttpServer({ }); // Export workflows and state machine for internal use (issue #7) -export { purchaseWorkflow, restorePurchaseWorkflow } from "../workflows/purchase/index.js"; +export { restorePurchaseWorkflow } from "../workflows/purchase/index.js"; export { PurchaseWorkflowMachine } from "../state/index.js"; export type { WorkflowSnapshot, PurchaseState, PurchaseEvent } from "../state/index.js";