]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/acq/routing.module.ts
LP1929741 ACQ Selection List & PO Angluar Port
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / acq / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3
4 const routes: Routes = [{
5   path: 'search',
6   loadChildren: () =>
7     import('./search/acq-search.module').then(m => m.AcqSearchModule)
8 }, {
9   path: 'provider',
10   loadChildren: () =>
11     import('./provider/acq-provider.module').then(m => m.AcqProviderModule)
12 }, {
13   path: 'po',
14   loadChildren: () => import('./po/po.module').then(m => m.PoModule)
15 }, {
16   path: 'picklist',
17   loadChildren: () =>
18     import('./picklist/picklist.module').then(m => m.PicklistModule)
19 }];
20
21 @NgModule({
22   imports: [RouterModule.forChild(routes)],
23   exports: [RouterModule]
24 })
25
26 export class AcqRoutingModule {}