]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/server/org-unit.module.ts
LP#1803790: apply alphabetization fix to Angular admin splash pages
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / server / org-unit.module.ts
1 import {NgModule} from '@angular/core';
2 import {TreeModule} from '@eg/share/tree/tree.module';
3 import {AdminCommonModule} from '@eg/staff/admin/common.module';
4 import {OrgUnitComponent} from './org-unit.component';
5 import {OrgAddressComponent} from './org-addr.component';
6 import {OrgUnitRoutingModule} from './org-unit-routing.module';
7
8 @NgModule({
9   declarations: [
10     OrgUnitComponent,
11     OrgAddressComponent
12   ],
13   imports: [
14     AdminCommonModule,
15     OrgUnitRoutingModule,
16     TreeModule
17   ],
18   exports: [
19   ],
20   providers: [
21   ]
22 })
23
24 export class OrgUnitModule {
25 }
26
27