]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/cat.module.ts
LP1896512 Angular retrieve record by ID/TCN
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / cat / cat.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {CatRoutingModule} from './routing.module';
4 import {BibByIdentComponent} from './bib-by-ident.component';
5
6 @NgModule({
7   declarations: [
8     BibByIdentComponent
9   ],
10   imports: [
11     StaffCommonModule,
12     CatRoutingModule
13   ],
14   providers: [
15   ]
16 })
17
18 export class CatModule {
19 }