]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/circ/patron/bcsearch/bcsearch.module.ts
Docs: merge 3.2 release notes
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / circ / patron / bcsearch / bcsearch.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {BcSearchRoutingModule} from './routing.module';
4 import {BcSearchComponent} from './bcsearch.component';
5
6 @NgModule({
7   declarations: [
8     BcSearchComponent
9   ],
10   imports: [
11     StaffCommonModule,
12     BcSearchRoutingModule,
13   ],
14 })
15
16 export class BcSearchModule {}
17