Files
vtuber-awards/frontend/src/lib/api/systemApi.ts
T

7 lines
221 B
TypeScript

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