blob: 4e8abe751c568842ddfcb8f0db15da88756e6ec0 [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 { DialogService } from './dialog.service';
21import { EditableTextService } from './editabletext.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010022import { LoadingService } from './loading.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010023import { QuickHelpService } from './quickhelp.service';
Sean Condonfd6d11b2018-06-02 20:29:49 +010024import { VeilComponent } from './veil/veil.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010025
26/**
27 * ONOS GUI -- Layers Module
28 */
29@NgModule({
Sean Condon83775682018-05-27 18:59:59 +010030 exports: [
Sean Condonfd6d11b2018-06-02 20:29:49 +010031 FlashComponent,
32 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010033 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010034 imports: [
Sean Condona00bf382018-06-23 07:54:01 +010035 CommonModule
Sean Condon83fc39f2018-04-19 18:56:13 +010036 ],
Sean Condon83775682018-05-27 18:59:59 +010037 declarations: [
Sean Condonfd6d11b2018-06-02 20:29:49 +010038 FlashComponent,
39 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010040 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010041 providers: [
Sean Condon83fc39f2018-04-19 18:56:13 +010042 ]
43})
44export class LayerModule { }