()
| 3 | export default class HealthController { |
| 4 | private static instance: HealthController; |
| 5 | private constructor() {} |
| 6 | |
| 7 | public static getInstance(): HealthController { |
| 8 | if (!HealthController.instance) { |
nothing calls this directly
no outgoing calls
no test coverage detected