2018-04-10 12:37:09 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
2018-04-11 12:54:05 +00:00
|
|
|
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
|
2018-04-10 12:37:09 +00:00
|
|
|
import { COMPONENTS } from './component';
|
|
|
|
import { SERVICES } from './service';
|
|
|
|
import { SensorStoreModule } from './sensor-store.module';
|
2018-04-18 11:28:53 +00:00
|
|
|
import { SensorItemModule } from '../sensor-item/sensor-item.module';
|
2018-05-24 07:56:53 +00:00
|
|
|
import { KeyValueModule } from '@overflow/commons/component/key-value/key-value.module';
|
2018-04-11 12:54:05 +00:00
|
|
|
// import { MetaCrawlerModule } from '../meta/crawler/crawler.module';
|
|
|
|
// import { MetaSensorDisplayItemModule } from '../meta/sensor-display-item/sensor-display-item.module';
|
2018-04-10 12:37:09 +00:00
|
|
|
// import { MetaCrawlerInputItemModule } from '../meta/crawler-input-item/crawler-input.module';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
2018-04-10 12:37:09 +00:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
|
|
|
FormsModule,
|
|
|
|
SensorStoreModule,
|
2018-04-11 12:54:05 +00:00
|
|
|
PrimeNGModules,
|
2018-04-18 12:56:57 +00:00
|
|
|
SensorItemModule,
|
2018-04-11 12:54:05 +00:00
|
|
|
// MetaCrawlerModule,
|
|
|
|
// MetaSensorDisplayItemModule,
|
2018-05-24 07:56:53 +00:00
|
|
|
KeyValueModule
|
2018-04-10 12:37:09 +00:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
SERVICES,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class SensorModule { }
|
2018-04-06 11:02:18 +00:00
|
|
|
|