member_webapp/@overflow/probe/probe.module.ts
crusader cd1e53f67a ing
2018-06-04 17:25:29 +09:00

30 lines
649 B
TypeScript

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