aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/ui/plugin/plugin-frame.module.ts
blob: fce9c76eb1da711c092b5802ba48de11b42913d6 (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
import {NgModule} from "@angular/core";
import { CommonModule } from '@angular/common';
import {PluginFrameComponent} from "./plugin-frame.component";
import {LayoutModule} from "../../layout/layout.module";
import {GlobalPipesModule} from "../../../pipes/global-pipes.module";
import {UiElementsModule} from "../ui-elements.module";
import {PluginNotConnectedModule} from "../../../pages/plugin-not-connected/plugin-not-connected-module";


@NgModule({
    declarations: [
        PluginFrameComponent
    ],
    imports: [
        CommonModule,
        LayoutModule,
        PluginNotConnectedModule,
        GlobalPipesModule,
        UiElementsModule
    ],
    entryComponents: [PluginFrameComponent],
    exports: [
        PluginFrameComponent
    ],
    providers: []
})
export class PluginFrameModule {

}