mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
17 lines
344 B
TypeScript
17 lines
344 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
import { AttachPage } from './attach.page'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: AttachPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class AttachPageRoutingModule {}
|