blob: 7479394f1ae6776395b252d6f46ee45698acc9b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import {NgModule} from "@angular/core";
import {BrowserModule} from "@angular/platform-browser";
import {FormsModule} from "@angular/forms";
import {TooltipModule} from "ngx-tooltip";
import {CommonModule} from "@angular/common";
import {SharedModule} from "../shared/shared.module";
import {FeatureFlagModule} from "../featureFlag/featureFlag.module";
import {HealthStatusService} from "../shared/server/healthStatusService/health-status.service";
import {HealthStatusComponent} from "./health-status.component";
@NgModule({
imports: [
BrowserModule,
FormsModule,
TooltipModule,
CommonModule,
SharedModule.forRoot(),
FeatureFlagModule.forRoot()],
providers: [HealthStatusService],
declarations: [HealthStatusComponent],
entryComponents: [HealthStatusComponent],
exports: [HealthStatusComponent]
})
export class HealthStatusModule {}
|