]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/copy-loc-order/copy-loc-order-routing.module.ts
LP2042879 Shelving Location Groups Admin accessibility
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / copy-loc-order / copy-loc-order-routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3 import {CopyLocOrderComponent} from './copy-loc-order.component';
4
5 const routes: Routes = [{
6     path: '',
7     component: CopyLocOrderComponent
8 }];
9
10 @NgModule({
11   imports: [RouterModule.forChild(routes)],
12   exports: [RouterModule]
13 })
14
15 export class CopyLocOrderRoutingModule {}