35 lines
894 B
TypeScript
35 lines
894 B
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 { DiscoveryModule } from '@overflow/discovery/discovery.module';
|
|
import { SensorModule } from '@overflow/sensor/sensor.module';
|
|
import { ProbeModule } from '@overflow/probe/probe.module';
|
|
import { MetaModule } from '@overflow/meta/meta.module';
|
|
import { UIModule } from '@overflow/shared/ui/ui.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
InfraStoreModule,
|
|
FormsModule,
|
|
UIModule,
|
|
DiscoveryModule,
|
|
SensorModule,
|
|
ProbeModule,
|
|
MetaModule,
|
|
],
|
|
declarations: [
|
|
COMPONENTS,
|
|
],
|
|
exports: [
|
|
COMPONENTS,
|
|
],
|
|
providers: [
|
|
SERVICES
|
|
]
|
|
})
|
|
export class InfraModule { }
|