]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/marcbatch/routing.module.ts
LP 2061136 follow-up: ng lint --fix
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / cat / marcbatch / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3 import {MarcBatchComponent} from './marcbatch.component';
4
5 const routes: Routes = [{
6     path: '',
7     component: MarcBatchComponent
8 }, {
9     path: 'bucket/:bucketId',
10     component: MarcBatchComponent
11 }, {
12     path: 'record/:recordId',
13     component: MarcBatchComponent
14 }];
15
16 @NgModule({
17     imports: [RouterModule.forChild(routes)],
18     exports: [RouterModule],
19     providers: []
20 })
21
22 export class MarcBatchRoutingModule {}
23