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

37 lines
1006 B
TypeScript
Raw Normal View History

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