blob: 179988d34a4890030f3a447a4f989d42bd827743 [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 { SvgModule } from '../svg/svg.module';
19import { UtilModule } from '../util/util.module';
20
21import { UrlFnService } from './urlfn.service';
22import { WebSocketService } from './websocket.service';
23import { WSock } from './wsock.service';
24import { RestService } from './rest.service';
25
26/**
27 * ONOS GUI -- Remote Communications Module
28 */
29@NgModule({
30 imports: [
31 CommonModule,
32 SvgModule,
33 UtilModule
34 ],
35 providers: [
36 RestService,
37 UrlFnService,
38 WebSocketService,
39 WSock
40 ]
41})
42export class RemoteModule { }