2018-04-16 08:28:39 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-05-30 10:00:46 +00:00
|
|
|
import { UIModule } from '@overflow/shared/ui/ui.module';
|
|
|
|
|
2018-04-16 08:28:39 +00:00
|
|
|
import { COMPONENTS } from './component';
|
|
|
|
import { SERVICES } from './service';
|
2018-04-16 10:45:10 +00:00
|
|
|
import { SensorModule } from '../sensor/sensor.module';
|
2018-04-19 12:56:24 +00:00
|
|
|
import { InfraModule } from '../infra/infra.module';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-16 08:28:39 +00:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
2018-06-05 11:31:29 +00:00
|
|
|
// SensorModule,
|
2018-05-30 10:00:46 +00:00
|
|
|
UIModule,
|
2018-06-05 11:31:29 +00:00
|
|
|
// InfraModule
|
2018-04-16 08:28:39 +00:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
SERVICES,
|
|
|
|
],
|
|
|
|
})
|
|
|
|
export class TargetModule { }
|