2018-04-06 11:02:18 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
2018-05-31 09:30:58 +00:00
|
|
|
import { UIModule } from '@overflow/shared/ui/ui.module';
|
|
|
|
|
2018-05-29 11:53:04 +00:00
|
|
|
import { COMPONENTS } from './component';
|
2018-04-06 11:02:18 +00:00
|
|
|
import { SERVICES } from './service';
|
2018-05-29 11:53:04 +00:00
|
|
|
|
2018-05-29 10:17:16 +00:00
|
|
|
import { MetaStoreModule } from './meta-store.module';
|
2018-04-06 11:02:18 +00:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule,
|
2018-05-31 09:30:58 +00:00
|
|
|
UIModule,
|
2018-05-29 10:17:16 +00:00
|
|
|
MetaStoreModule,
|
2018-04-06 11:02:18 +00:00
|
|
|
],
|
|
|
|
declarations: [
|
2018-05-29 11:53:04 +00:00
|
|
|
COMPONENTS,
|
2018-04-06 11:02:18 +00:00
|
|
|
],
|
|
|
|
exports: [
|
2018-05-29 11:53:04 +00:00
|
|
|
COMPONENTS,
|
2018-04-06 11:02:18 +00:00
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
SERVICES,
|
2018-05-29 11:53:04 +00:00
|
|
|
],
|
2018-04-06 11:02:18 +00:00
|
|
|
})
|
2018-05-29 10:17:16 +00:00
|
|
|
export class MetaModule { }
|