| 40 | let backendOwnership: BackendOwnership = null |
| 41 | |
| 42 | export interface BackendHealthStatus { |
| 43 | status: 'alive' | 'restarting' | 'dead' |
| 44 | exitCode?: number | null |
| 45 | } |
| 46 | |
| 47 | let latestBackendHealthStatus: BackendHealthStatus | null = null |
| 48 |
nothing calls this directly
no outgoing calls
no test coverage detected