blob: d4d57d986f1fbe21040df2a25e55443950cc9026 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2018 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 { MDMFilereleaseModule } from '../filerelease/mdm-filerelease.module';
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';
@NgModule({
imports: [
MDMDetailRoutingModule,
MDMCoreModule,
// MDMFilereleaseModule
],
declarations: [
MDMDetailComponent,
MDMDetailViewComponent,
MDMDescriptiveDataComponent,
SensorComponent,
],
exports: [
MDMDetailComponent
],
providers: [
DetailViewService,
ContextService
]
})
export class MDMDetailModule {
}