37 lines
1006 B
TypeScript
37 lines
1006 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { DiscoveryStoreModule } from './discovery-store.module';
|
|
import { DiscoveryRPCModule } from './discovery-rpc.module';
|
|
import { DiscoveryLoggerModule } from './discovery-logger.module';
|
|
|
|
import { COMPONENTS } from './component';
|
|
import { SERVICES } from './service';
|
|
import { PrimeNGModules } from '@overflow/commons/prime-ng/prime-ng.module';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { KeyValueModule } from '@overflow/commons/component/key-value/key-value.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
PrimeNGModules,
|
|
DiscoveryStoreModule,
|
|
DiscoveryRPCModule,
|
|
DiscoveryLoggerModule,
|
|
KeyValueModule
|
|
],
|
|
declarations: [
|
|
COMPONENTS
|
|
],
|
|
exports: [
|
|
COMPONENTS,
|
|
],
|
|
providers: [
|
|
SERVICES,
|
|
],
|
|
})
|
|
export class DiscoveryModule { }
|