forked from cloudforet-io/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkspace-routes.ts
25 lines (21 loc) · 885 Bytes
/
workspace-routes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type { RouteConfig } from 'vue-router';
import alertManagerRoute from '@/services/alert-manager/v2/routes/routes';
import assetInventoryRoute from '@/services/asset-inventory/routes/routes';
import costExplorerRoute from '@/services/cost-explorer/routes/routes';
import dashboardsRoute from '@/services/dashboards/routes/routes';
import iamRoutes from '@/services/iam/routes/routes';
import infoRoute from '@/services/info/routes/routes';
import opsFlowRoutes from '@/services/ops-flow/routes/routes';
import projectRoute from '@/services/project/v1/routes/routes';
import workspaceHomeRoute from '@/services/workspace-home/routes/routes';
export const workspaceRoutes: RouteConfig[] = [
workspaceHomeRoute,
dashboardsRoute,
iamRoutes,
assetInventoryRoute,
projectRoute,
alertManagerRoute,
costExplorerRoute,
infoRoute,
opsFlowRoutes,
];