36 lines
933 B
TypeScript
36 lines
933 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { COMPONENTS, CONTAINERS } from './component';
|
|
import { ProbeStoreModule } from './probe-store.module';
|
|
import { SERVICES } from './service';
|
|
import { PrimeNGModules } from '../commons/prime-ng/prime-ng.module';
|
|
import { FormsModule } from '@angular/forms';
|
|
import { DiscoveryModule } from '@overflow/discovery/discovery.module';
|
|
import { MetaCrawlerModule } from '@overflow/meta/crawler/crawler.module';
|
|
import { KeyValueModule } from '@overflow/commons/component/key-value/key-value.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
PrimeNGModules,
|
|
ProbeStoreModule,
|
|
FormsModule,
|
|
DiscoveryModule,
|
|
KeyValueModule,
|
|
MetaCrawlerModule
|
|
],
|
|
declarations: [
|
|
CONTAINERS,
|
|
COMPONENTS,
|
|
],
|
|
exports: [
|
|
CONTAINERS,
|
|
COMPONENTS,
|
|
],
|
|
providers: [
|
|
SERVICES,
|
|
]
|
|
})
|
|
export class ProbeModule { }
|