member_webapp/@overflow/target/target.module.ts
2018-06-21 20:10:18 +09:00

27 lines
473 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { UIModule } from '@overflow/shared/ui/ui.module';
import { COMPONENTS } from './component';
import { SERVICES } from './service';
@NgModule({
imports: [
CommonModule,
// SensorModule,
UIModule,
// InfraModule
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
export class TargetModule { }