blob: 21806c582333be13a08ed1c726633235d68e4896 [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 Condon2aa86092018-07-16 09:04:05 +010019import { ConfirmComponent } from './confirm/confirm.component';
Sean Condon83775682018-05-27 18:59:59 +010020import { FlashComponent } from './flash/flash.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010021import { DialogService } from './dialog.service';
22import { EditableTextService } from './editabletext.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010023import { LoadingService } from './loading.service';
Sean Condon83fc39f2018-04-19 18:56:13 +010024import { QuickHelpService } from './quickhelp.service';
Sean Condonfd6d11b2018-06-02 20:29:49 +010025import { VeilComponent } from './veil/veil.component';
Sean Condon83fc39f2018-04-19 18:56:13 +010026
27/**
28 * ONOS GUI -- Layers Module
29 */
30@NgModule({
Sean Condon83775682018-05-27 18:59:59 +010031 exports: [
Sean Condon2aa86092018-07-16 09:04:05 +010032 ConfirmComponent,
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 Condon2aa86092018-07-16 09:04:05 +010040 ConfirmComponent,
Sean Condonfd6d11b2018-06-02 20:29:49 +010041 FlashComponent,
42 VeilComponent
Sean Condon83775682018-05-27 18:59:59 +010043 ],
Sean Condon83fc39f2018-04-19 18:56:13 +010044 providers: [
Sean Condon83fc39f2018-04-19 18:56:13 +010045 ]
46})
47export class LayerModule { }