member_webapp/@overflow/discovery/discovery.module.ts

37 lines
1006 B
TypeScript
Raw Normal View History

2018-05-24 12:16:10 +09:00
import { NgModule } from '@angular/core';
2018-04-10 19:20:44 +09:00
import { CommonModule } from '@angular/common';
2018-05-24 12:16:10 +09:00
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
2018-04-06 20:02:18 +09:00
2018-04-10 19:20:44 +09:00
import { DiscoveryStoreModule } from './discovery-store.module';
import { DiscoveryRPCModule } from './discovery-rpc.module';
import { DiscoveryLoggerModule } from './discovery-logger.module';
2018-04-06 20:02:18 +09:00
2018-04-10 19:20:44 +09:00
import { COMPONENTS } from './component';
import { SERVICES } from './service';
2018-05-24 15:44:13 +09:00
import { PrimeNGModules } from '@overflow/commons/prime-ng/prime-ng.module';
2018-05-24 12:16:10 +09:00
import { BrowserModule } from '@angular/platform-browser';
2018-05-24 16:56:53 +09:00
import { KeyValueModule } from '@overflow/commons/component/key-value/key-value.module';
2018-04-06 20:02:18 +09:00
2018-04-10 19:20:44 +09:00
@NgModule({
imports: [
CommonModule,
FormsModule,
2018-05-24 12:16:10 +09:00
ReactiveFormsModule,
2018-04-10 19:20:44 +09:00
PrimeNGModules,
DiscoveryStoreModule,
DiscoveryRPCModule,
DiscoveryLoggerModule,
2018-05-24 16:56:53 +09:00
KeyValueModule
2018-04-10 19:20:44 +09:00
],
declarations: [
COMPONENTS
],
exports: [
COMPONENTS,
],
providers: [
SERVICES,
],
})
2018-05-24 12:16:10 +09:00
export class DiscoveryModule { }