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