]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.module.ts
58910dddbb92d7a61d1e1951a391752b0b18ccc8
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / sandbox / sandbox.module.ts
1 import {NgModule} from '@angular/core';
2 import {StaffCommonModule} from '@eg/staff/common.module';
3 import {SandboxRoutingModule} from './routing.module';
4 import {SandboxComponent} from './sandbox.component';
5
6 @NgModule({
7   declarations: [
8     SandboxComponent
9   ],
10   imports: [
11     StaffCommonModule,
12     SandboxRoutingModule,
13   ],
14   providers: [
15   ]
16 })
17
18 export class SandboxModule {
19
20 }