Skip to content

Commit

Permalink
Remove Workflow initialization from app startup
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Sep 16, 2024
1 parent db02cbe commit 290d3bf
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions App/Index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import DocsRoutes from "./FeatureSet/Docs/Index";
// import FeatureSets.
import IdentityRoutes from "./FeatureSet/Identity/Index";
import NotificationRoutes from "./FeatureSet/Notification/Index";
import Workflow from "../Workflow/Routes";
import { PromiseVoidFunction } from "Common/Types/FunctionTypes";
import { ClickhouseAppInstance } from "Common/Server/Infrastructure/ClickhouseDatabase";
import PostgresAppInstance from "Common/Server/Infrastructure/PostgresDatabase";
Expand Down Expand Up @@ -63,7 +62,6 @@ const init: PromiseVoidFunction = async (): Promise<void> => {
await DocsRoutes.init();
await BaseAPIRoutes.init();
await APIReferenceRoutes.init();
await Workflow.init();

// Add default routes to the app
await App.addDefaultRoutes();
Expand Down

0 comments on commit 290d3bf

Please sign in to comment.