aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/forms/artifacts-form/artifact-form.module.ts
blob: dba801212e4496c96d3c9a7311a255213d10e72a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * Created by rc2122 on 5/24/2018.
 */
import { NgModule } from "@angular/core";
import { TranslateModule } from "app/ng2/shared/translator/translate.module";
import { SdcUiComponentsModule } from "onap-ui-angular";
import { CommonModule } from '@angular/common';
import {ArtifactFormComponent} from "./artifact-form.component";

@NgModule({
    declarations: [ArtifactFormComponent],
    imports: [TranslateModule,
        SdcUiComponentsModule,
        CommonModule],
    exports: [ArtifactFormComponent],
    entryComponents: [ArtifactFormComponent]
})


export class ArtifactFormModule {
}