7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
import type { DatabaseHealthResponse } from '../../types/awards'
|
|
import { requestJson } from '../http'
|
|
|
|
export const systemApi = {
|
|
getDatabaseHealth: () => requestJson<DatabaseHealthResponse>('/api/health/database'),
|
|
}
|