summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/workspace/attributes/attributes.module.ts
blob: 5abb952e37384d6b56d3211a8f8571c2aee3a875 (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 { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { SdcUiComponentsModule } from 'onap-ui-angular';
import { GlobalPipesModule } from '../../../pipes/global-pipes.module';
import { AttributesComponent } from './attributes.component';
import { NgxDatatableModule } from '@swimlane/ngx-datatable';
import { TopologyTemplateService } from '../../../services/component-services/topology-template.service';
import { AttributeModalComponent } from './attribute-modal.component';
import { TranslateModule } from '../../../shared/translator/translate.module';

@NgModule({
    declarations: [
        AttributesComponent,
        AttributeModalComponent
    ],
    imports: [
        CommonModule,
        SdcUiComponentsModule,
        GlobalPipesModule,
        NgxDatatableModule,
        TranslateModule
    ],
    exports: [
        AttributesComponent
    ],
    entryComponents: [
        AttributesComponent, AttributeModalComponent
    ],
    providers: [TopologyTemplateService]
})
export class AttributesModule {
}