6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
import { apiRequest } from './api.js'
|
|
|
|
export function fetchBackendHealth() {
|
|
return apiRequest('/health')
|
|
}
|