blob: 29662a55204218f1cfa6c0abefee435fd04a3be9 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
import { NgModule } from '@angular/core';
import { MDMDetailRoutingModule } from './mdm-detail-routing.module';
import { MDMCoreModule } from '../core/mdm-core.module';
import { PanelModule } from 'primeng/panel';
import { MDMDetailComponent } from './mdm-detail.component';
import { MDMDetailViewComponent } from './mdm-detail-view.component';
import { MDMDescriptiveDataComponent } from './mdm-detail-descriptive-data.component';
import { DetailViewService } from './detail-view.service';
import { SensorComponent } from './sensor.component';
import { ContextService } from './context.service';
import { DetailPanelComponent } from './detail-panel/detail-panel.component';
@NgModule({
imports: [
MDMDetailRoutingModule,
MDMCoreModule,
PanelModule
],
declarations: [
MDMDetailComponent,
MDMDetailViewComponent,
MDMDescriptiveDataComponent,
SensorComponent,
DetailPanelComponent,
],
exports: [
MDMDetailComponent
],
providers: [
DetailViewService,
ContextService
]
})
export class MDMDetailModule {
}