caf6a3f528384e8497fe1e34857e7dacb4782eca
[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
5 @NgModule({
6     declarations: [
7         InterfaceOperationComponent
8     ],
9     imports: [
10         CommonModule
11     ],
12     exports: [],
13     entryComponents: [
14         InterfaceOperationComponent
15     ],
16     providers: []
17 })
18
19 export class InterfaceOperationModule {}