summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/workspace/tosca-artifacts/tosca-artifact-page.module.ts
blob: 00c7b0b37105b117c6e6d2eba61572d945fae14d (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
import {CommonModule} from "@angular/common";
import {NgModule} from "@angular/core";
import {SdcUiComponentsModule} from "onap-ui-angular";
import {GlobalPipesModule} from "../../../pipes/global-pipes.module";
import {NgxDatatableModule} from "@swimlane/ngx-datatable";
import {ToscaArtifactPageComponent} from "./tosca-artifact-page.component";
import {UiElementsModule} from "../../../components/ui/ui-elements.module";

@NgModule({
    declarations: [
        ToscaArtifactPageComponent
    ],
    imports: [
        CommonModule,
        SdcUiComponentsModule,
        NgxDatatableModule,
        UiElementsModule
    ],
    exports: [
        ToscaArtifactPageComponent
    ],
    entryComponents: [
        ToscaArtifactPageComponent
    ],

})
export class ToscaArtifactPageModule {
}