member_webapp/@overflow/sensor/sensor.module.ts

38 lines
1.1 KiB
TypeScript
Raw Normal View History

2018-04-10 21:37:09 +09:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
2018-05-30 19:00:46 +09:00
import { UIModule } from '@overflow/shared/ui/ui.module';
2018-04-10 21:37:09 +09:00
import { COMPONENTS } from './component';
import { SERVICES } from './service';
import { SensorStoreModule } from './sensor-store.module';
import { SensorItemModule } from '../sensor-item/sensor-item.module';
2018-05-27 20:49:40 +09:00
import { CONTAINER_COMPONENTS } from './container';
2018-04-11 21:54:05 +09:00
// import { MetaCrawlerModule } from '../meta/crawler/crawler.module';
// import { MetaSensorDisplayItemModule } from '../meta/sensor-display-item/sensor-display-item.module';
2018-04-10 21:37:09 +09:00
// import { MetaCrawlerInputItemModule } from '../meta/crawler-input-item/crawler-input.module';
2018-04-06 20:02:18 +09:00
2018-04-10 21:37:09 +09:00
@NgModule({
imports: [
CommonModule,
FormsModule,
2018-05-30 19:00:46 +09:00
UIModule,
2018-04-10 21:37:09 +09:00
SensorStoreModule,
2018-04-18 21:56:57 +09:00
SensorItemModule,
2018-04-10 21:37:09 +09:00
],
declarations: [
2018-05-27 20:49:40 +09:00
CONTAINER_COMPONENTS,
2018-04-10 21:37:09 +09:00
COMPONENTS,
],
exports: [
2018-05-27 20:49:40 +09:00
CONTAINER_COMPONENTS,
2018-04-10 21:37:09 +09:00
COMPONENTS,
],
providers: [
SERVICES,
]
})
export class SensorModule { }
2018-04-06 20:02:18 +09:00