]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/admin-local.module.ts
LP1837059 Address alert config help text
[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
9 @NgModule({
10   declarations: [
11       AdminLocalSplashComponent,
12       AddressAlertComponent
13   ],
14   imports: [
15     AdminCommonModule,
16     AdminLocalRoutingModule,
17     TreeModule
18   ],
19   exports: [
20   ],
21   providers: [
22   ]
23 })
24
25 export class AdminLocalModule {
26 }
27
28