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

32 lines
709 B
TypeScript
Raw Permalink Normal View History

2018-04-10 12:37:09 +00:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
2018-05-30 10:00:46 +00:00
import { UIModule } from '@overflow/shared/ui/ui.module';
2018-06-05 11:29:35 +00:00
import { MetaModule } from '@overflow/meta/meta.module';
2018-05-30 10:00:46 +00:00
2018-04-10 12:37:09 +00:00
import { COMPONENTS } from './component';
import { SERVICES } from './service';
import { SensorItemModule } from '../sensor-item/sensor-item.module';
2018-04-06 11:02:18 +00:00
2018-04-10 12:37:09 +00:00
@NgModule({
imports: [
CommonModule,
FormsModule,
2018-05-30 10:00:46 +00:00
UIModule,
2018-06-05 11:29:35 +00:00
MetaModule,
2018-04-18 12:56:57 +00:00
SensorItemModule,
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