mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
21 lines
443 B
TypeScript
21 lines
443 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
|
|
const ROUTES: Routes = [
|
|
{
|
|
path: '',
|
|
loadChildren: () =>
|
|
import('./home/home.module').then(m => m.HomePageModule),
|
|
},
|
|
{
|
|
path: 'logs',
|
|
loadChildren: () =>
|
|
import('./logs/logs.module').then(m => m.LogsPageModule),
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(ROUTES)],
|
|
})
|
|
export class DiagnosticModule {}
|