Service operation UI merge
[sdc.git] / catalog-ui / src / app / ng2 / pages / interface-operation / interface-operation.module.ts
1 import {NgModule} from "@angular/core";
2 import {CommonModule} from "@angular/common";
3 import {InterfaceOperationComponent} from "./interface-operation.page.component";
4 import {UiElementsModule} from "app/ng2/components/ui/ui-elements.module";
5
6 @NgModule({
7     declarations: [
8         InterfaceOperationComponent
9     ],
10     imports: [
11         CommonModule,
12         UiElementsModule
13     ],
14     exports: [],
15     entryComponents: [
16         InterfaceOperationComponent
17     ],
18     providers: []
19 })
20
21 export class InterfaceOperationModule {}