]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/acq/routing.module.ts
LP1889128 Confirm data loaded before Place Hold activated
[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 ];
14
15 @NgModule({
16   imports: [RouterModule.forChild(routes)],
17   exports: [RouterModule]
18 })
19
20 export class AcqRoutingModule {}