mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
Implement hidden dev service packaging tools. Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
31 lines
712 B
TypeScript
31 lines
712 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { Routes, RouterModule } from '@angular/router'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
loadChildren: () =>
|
|
import('./developer-list/developer-list.module').then(
|
|
m => m.DeveloperPageModule,
|
|
),
|
|
},
|
|
{
|
|
path: 'config',
|
|
loadChildren: () =>
|
|
import('./dev-config/dev-config.module').then(m => m.DevConfigPageModule),
|
|
},
|
|
{
|
|
path: 'instructions',
|
|
loadChildren: () =>
|
|
import('./dev-instructions/dev-instructions.module').then(
|
|
m => m.DevInstructionsPageModule,
|
|
),
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class DeveloperRoutingModule {}
|