]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/share/string/string.module.ts
LP1840050 Modularize various standalone components + more.
[working/Evergreen.git] / Open-ILS / src / eg2 / src / app / share / string / string.module.ts
1 import {NgModule} from '@angular/core';
2 import {EgCoreModule} from '@eg/core/core.module';
3 import {StringComponent} from '@eg/share/string/string.component';
4 import {StringService} from '@eg/share/string/string.service';
5
6
7 @NgModule({
8     declarations: [
9         StringComponent
10     ],
11     imports: [
12         EgCoreModule
13     ],
14     exports: [
15         StringComponent
16     ],
17     providers: [
18         StringService
19     ]
20 })
21
22 export class StringModule { }
23