blob: 6292a8d6bdbbb1097216fcc7442275a7db333146 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2015-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16import { NgModule } from '@angular/core';
17import { CommonModule } from '@angular/common';
18import { UtilModule } from '../util/util.module';
19
Sean Condon83775682018-05-27 18:59:59 +010020import { FlashComponent } from './flash/flash.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010021import { DetailsPanelService } from './detailspanel.service';
22import { DialogService } from './dialog.service';
23import { EditableTextService } from './editabletext.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010024import { LoadingService } from './loading.service';
25import { PanelService } from './panel.service';
26import { QuickHelpService } from './quickhelp.service';
Sean Condonfd6d11b2018-06-02 20:29:49 +010027import { VeilComponent } from './veil/veil.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010028
29/**
30 * ONOS GUI -- Layers Module
31 */
32@NgModule({
Sean Condon83775682018-05-27 18:59:59 +010033 exports: [
Sean Condonfd6d11b2018-06-02 20:29:49 +010034 FlashComponent,
35 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010036 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010037 imports: [
38 CommonModule,
39 UtilModule
40 ],
Sean Condon83775682018-05-27 18:59:59 +010041 declarations: [
Sean Condonfd6d11b2018-06-02 20:29:49 +010042 FlashComponent,
43 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010044 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010045 providers: [
46 DetailsPanelService,
47 DialogService,
48 EditableTextService,
Sean Condon83fc39f2018-04-19 18:56:13 +010049 LoadingService,
50 PanelService,
Sean Condonfd6d11b2018-06-02 20:29:49 +010051 QuickHelpService
Sean Condon83fc39f2018-04-19 18:56:13 +010052 ]
53})
54export class LayerModule { }