diff --git a/src/routes/modules/index.ts b/src/routes/modules/index.ts index f35f07f..674205e 100644 --- a/src/routes/modules/index.ts +++ b/src/routes/modules/index.ts @@ -7,6 +7,7 @@ import { componentLibraryModule } from './componentLibrary'; import { compositeCompLibraryModule } from './compositeCompLibrary'; import { componentMarketModule } from './componentMarket'; import { ideContainerMoudle } from './ideContainer'; +import { orchestrationModule } from './orchestration'; export { dashboardModule, @@ -17,7 +18,8 @@ export { componentLibraryModule, compositeCompLibraryModule, componentMarketModule, - ideContainerMoudle + ideContainerMoudle, + orchestrationModule }; export const moduleMap = { @@ -29,5 +31,6 @@ export const moduleMap = { componentLibrary: componentLibraryModule, compositeCompLibrary: compositeCompLibraryModule, componentMarket: componentMarketModule, - ideContainer: ideContainerMoudle + ideContainer: ideContainerMoudle, + orchestrationModule: orchestrationModule }; \ No newline at end of file diff --git a/src/routes/modules/orchestration.ts b/src/routes/modules/orchestration.ts new file mode 100644 index 0000000..0d8674b --- /dev/null +++ b/src/routes/modules/orchestration.ts @@ -0,0 +1,8 @@ +import { IRoute } from '@/routes/types'; + +export const orchestrationModule: IRoute = { + name: 'menu.orchestration.project', + key: '', + breadcrumb: false, + ignore: true +}; \ No newline at end of file