]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/admin-local.module.ts
LP 1907921: Add a patron search button to course admin screen
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / admin-local.module.ts
1 import {NgModule} from '@angular/core';
2 import {TreeModule} from '@eg/share/tree/tree.module';
3 import {StaffCommonModule} from '@eg/staff/common.module';
4 import {AdminLocalRoutingModule} from './routing.module';
5 import {AdminCommonModule} from '@eg/staff/admin/common.module';
6 import {AdminLocalSplashComponent} from './admin-local-splash.component';
7 import {AddressAlertComponent} from './address-alert.component';
8 import {AdminCarouselComponent} from './admin-carousel.component';
9 import {StandingPenaltyComponent} from './standing-penalty.component';
10
11 @NgModule({
12   declarations: [
13       AdminLocalSplashComponent,
14       AddressAlertComponent,
15       AdminCarouselComponent,
16       StandingPenaltyComponent
17   ],
18   imports: [
19     AdminCommonModule,
20     AdminLocalRoutingModule,
21     TreeModule
22   ],
23   exports: [
24   ],
25   providers: [
26   ]
27 })
28
29 export class AdminLocalModule {
30 }
31
32