2018-04-06 22:02:46 +09:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
2018-04-06 20:02:18 +09:00
|
|
|
|
2018-05-27 23:17:07 +09:00
|
|
|
import { COMPONENTS } from './component';
|
2018-04-06 22:02:46 +09:00
|
|
|
import { SERVICES } from './service';
|
2018-04-11 15:20:23 +09:00
|
|
|
import { FormsModule } from '@angular/forms';
|
2018-05-29 20:58:50 +09:00
|
|
|
import { MetaModule } from '@overflow/meta/meta.module';
|
2018-06-04 17:25:29 +09:00
|
|
|
// import { InfraModule } from '@overflow/infra/infra.module';
|
2018-05-30 19:00:46 +09:00
|
|
|
import { UIModule } from '@overflow/shared/ui/ui.module';
|
2018-04-06 20:02:18 +09:00
|
|
|
|
2018-04-06 22:02:46 +09:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
2018-04-18 20:39:02 +09:00
|
|
|
FormsModule,
|
2018-05-30 19:00:46 +09:00
|
|
|
UIModule,
|
2018-05-29 21:18:43 +09:00
|
|
|
MetaModule,
|
2018-06-04 17:25:29 +09:00
|
|
|
// InfraModule,
|
2018-04-06 22:02:46 +09:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
COMPONENTS,
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
SERVICES,
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class ProbeModule { }
|