]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/marcbatch/marcbatch.module.ts
LP1880726 MARC Batch edit Angular port
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / cat / marcbatch / marcbatch.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {CommonWidgetsModule} from '@eg/share/common-widgets.module';
4 import {MarcBatchRoutingModule} from './routing.module';
5 import {MarcBatchComponent} from './marcbatch.component';
6 import {HttpClientModule} from '@angular/common/http';
7
8 @NgModule({
9   declarations: [
10     MarcBatchComponent
11   ],
12   imports: [
13     StaffCommonModule,
14     HttpClientModule,
15     CommonWidgetsModule,
16     MarcBatchRoutingModule
17   ],
18   providers: [
19   ]
20 })
21
22 export class MarcBatchModule {
23 }