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