blob: 1a397b44bede71f1a998fedfd0e1f40acd19008b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { HomeComponent } from "./home.component";
import { LayoutModule } from "../../components/layout/layout.module";
import { UiElementsModule } from "../../components/ui/ui-elements.module";
import { GlobalPipesModule } from "../../pipes/global-pipes.module";
import { TranslateModule } from "../../shared/translator/translate.module";
import { SdcUiComponentsModule } from "onap-ui-angular";
import { ResourceServiceNg2 } from "../../services/component-services/resource.service";
@NgModule({
declarations: [
HomeComponent
],
imports: [
CommonModule,
SdcUiComponentsModule,
LayoutModule,
UiElementsModule,
GlobalPipesModule,
TranslateModule
],
exports: [
HomeComponent
],
entryComponents: [
HomeComponent
],
providers: [ResourceServiceNg2]
})
export class HomeModule {
}
|