]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/shelving_location_groups/shelving_location_groups.module.ts
lp1852321 Angular Shelving Location Groups UI Port
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / shelving_location_groups / shelving_location_groups.module.ts
1 import {NgModule} from '@angular/core';
2 import {AdminCommonModule} from '@eg/staff/admin/common.module';
3 import {ShelvingLocationGroupsComponent} from './shelving_location_groups.component';
4 import {ShelvingLocationGroupsRoutingModule} from './shelving_location_groups_routing.module';
5
6 @NgModule({
7   declarations: [
8     ShelvingLocationGroupsComponent,
9   ],
10   imports: [
11     AdminCommonModule,
12     ShelvingLocationGroupsRoutingModule,
13   ],
14   exports: [],
15   providers: []
16 })
17
18 export class ShelvingLocationGroupsModule {}