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