blob: 1296ce201a723c52c2a288b1fc5beda4576b4cd0 [file] [log] [blame]
Boyuan Yan6b23b382019-06-04 11:59:35 -07001/*
2 * Copyright 2019-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 */
16
17import { NgModule } from '@angular/core';
18import { CommonModule } from '@angular/common';
19import { Gui2FwLibModule } from 'gui2-fw-lib';
20import { RoadmDeviceComponent } from './roadm/roadm.component';
21import { RoadmRoutingModule } from './roadm-routing.module';
22import { FormsModule, ReactiveFormsModule } from '@angular/forms';
23import { RoadmPortComponent } from './port/port.component';
24
25@NgModule({
26 declarations: [
27 RoadmDeviceComponent,
28 RoadmPortComponent,
29 ],
30 imports: [
31 RoadmRoutingModule,
32 Gui2FwLibModule,
33 CommonModule,
34 FormsModule,
35 ReactiveFormsModule
36 ],
37 exports: [
38 RoadmDeviceComponent,
39 RoadmPortComponent,
40 ]
41})
42export class RoadmGuiLibModule { }