blob: b4e39b2afe3434aec37f9901863f9f0230d59693 [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';
Sean Condon83fc39f2018-04-19 18:56:13 +010018
Sean Condon83775682018-05-27 18:59:59 +010019import { FlashComponent } from './flash/flash.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010020import { DetailsPanelService } from './detailspanel.service';
21import { DialogService } from './dialog.service';
22import { EditableTextService } from './editabletext.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010023import { LoadingService } from './loading.service';
24import { PanelService } from './panel.service';
25import { QuickHelpService } from './quickhelp.service';
Sean Condonfd6d11b2018-06-02 20:29:49 +010026import { VeilComponent } from './veil/veil.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010027
28/**
29 * ONOS GUI -- Layers Module
30 */
31@NgModule({
Sean Condon83775682018-05-27 18:59:59 +010032 exports: [
Sean Condonfd6d11b2018-06-02 20:29:49 +010033 FlashComponent,
34 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010035 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010036 imports: [
Sean Condona00bf382018-06-23 07:54:01 +010037 CommonModule
Sean Condon83fc39f2018-04-19 18:56:13 +010038 ],
Sean Condon83775682018-05-27 18:59:59 +010039 declarations: [
Sean Condonfd6d11b2018-06-02 20:29:49 +010040 FlashComponent,
41 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010042 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010043 providers: [
44 DetailsPanelService,
45 DialogService,
46 EditableTextService,
Sean Condon83fc39f2018-04-19 18:56:13 +010047 LoadingService,
48 PanelService,
Sean Condonfd6d11b2018-06-02 20:29:49 +010049 QuickHelpService
Sean Condon83fc39f2018-04-19 18:56:13 +010050 ]
51})
52export class LayerModule { }