@deepkit/api-console-gui
Version:
API Console GUI
8 lines • 352 B
JavaScript
import { OverviewComponent } from './views/overview.component';
import { ConsoleComponent } from './views/console.component';
export const routes = [
{ path: '', pathMatch: 'full', redirectTo: 'api' },
{ path: 'api', component: OverviewComponent },
{ path: 'api/console', component: ConsoleComponent },
];
//# sourceMappingURL=routes.js.map