()
| 113 | } |
| 114 | |
| 115 | export async function checkHealth(): Promise<boolean> { |
| 116 | try { |
| 117 | await api.get('/health', { timeout: 3000 }); |
| 118 | return true; |
| 119 | } catch { |
| 120 | return false; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | export async function checkVersion(): Promise<VersionCheck> { |
| 125 | try { |
no outgoing calls
no test coverage detected