blob: 293d8e98fc3865131f27894446583bcde77668dc [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001/*
2 * Copyright 2014-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';
18
19import { EeService } from './ee.service';
20import { FnService } from './fn.service';
21import { KeyService } from './key.service';
22import { LionService } from './lion.service';
23import { PrefsService } from './prefs.service';
24import { RandomService } from './random.service';
25import { ThemeService } from './theme.service';
26
27/**
28 * ONOS GUI -- Utilities Module
29 */
30@NgModule({
31 imports: [
32 CommonModule
33 ],
34 declarations: [],
35 providers: [
36 EeService,
37 FnService,
38 KeyService,
39 LionService,
40 PrefsService,
41 RandomService,
42 ThemeService
43 ]
44})
45export class UtilModule { }