member_webapp/@overflow/target/target.module.ts

30 lines
702 B
TypeScript
Raw Normal View History

2018-04-16 17:28:39 +09:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
2018-04-06 20:02:18 +09:00
2018-04-16 17:28:39 +09:00
import { COMPONENTS } from './component';
import { SERVICES } from './service';
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
2018-04-16 19:45:10 +09:00
import { SensorModule } from '../sensor/sensor.module';
2018-05-24 15:44:13 +09:00
// import { KeyValueModule } from 'app/commons/component/key-value/key-value.module';
2018-04-19 21:56:24 +09:00
import { InfraModule } from '../infra/infra.module';
2018-04-06 20:02:18 +09:00
2018-04-16 17:28:39 +09:00
@NgModule({
imports: [
CommonModule,
2018-04-16 19:45:10 +09:00
PrimeNGModules,
2018-04-19 19:26:39 +09:00
SensorModule,
2018-05-24 15:44:13 +09:00
// KeyValueModule,
2018-04-19 21:56:24 +09:00
InfraModule
2018-04-16 17:28:39 +09:00
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
export class TargetModule { }