member_webapp/@overflow/meta/meta.module.ts
crusader 46c1c55d61 ing
2018-06-01 18:45:28 +09:00

25 lines
431 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,
UIModule,
],
declarations: [
COMPONENTS,
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
export class MetaModule { }