blob: f5923fc32720b5c99f1fcb8964178d838b05609b [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
20import { DetailsPanelService } from './detailspanel.service';
21import { DialogService } from './dialog.service';
22import { EditableTextService } from './editabletext.service';
23import { FlashService } from './flash.service';
24import { LoadingService } from './loading.service';
25import { PanelService } from './panel.service';
26import { QuickHelpService } from './quickhelp.service';
27import { VeilService } from './veil.service';
28
29/**
30 * ONOS GUI -- Layers Module
31 */
32@NgModule({
33 imports: [
34 CommonModule,
35 UtilModule
36 ],
37 providers: [
38 DetailsPanelService,
39 DialogService,
40 EditableTextService,
41 FlashService,
42 LoadingService,
43 PanelService,
44 QuickHelpService,
45 VeilService
46 ]
47})
48export class LayerModule { }