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