]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/workstation/routing.module.ts
LP#1775466 Angular(6) base application
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / workstation / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3
4 const routes: Routes = [{
5     path: 'workstations',
6     loadChildren: '@eg/staff/admin/workstation/workstations/workstations.module#ManageWorkstationsModule'
7 }];
8
9 @NgModule({
10   imports: [RouterModule.forChild(routes)],
11   exports: [RouterModule]
12 })
13
14 export class AdminWsRoutingModule {}