36 lines
806 B
TypeScript
36 lines
806 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { COMPONENTS } from './component';
|
|
import { SERVICES } from './service';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { ProbeRPCModule } from './probe-rpc.module';
|
|
import { ProbeLoggerModule } from './probe-logger.module';
|
|
|
|
import { MetaModule } from '@overflow/meta/meta.module';
|
|
// import { InfraModule } from '@overflow/infra/infra.module';
|
|
import { UIModule } from '@overflow/shared/ui/ui.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
UIModule,
|
|
MetaModule,
|
|
// InfraModule,
|
|
ProbeRPCModule,
|
|
ProbeLoggerModule,
|
|
],
|
|
declarations: [
|
|
COMPONENTS,
|
|
],
|
|
exports: [
|
|
COMPONENTS,
|
|
],
|
|
providers: [
|
|
SERVICES,
|
|
]
|
|
})
|
|
export class ProbeModule { }
|