first commit

This commit is contained in:
baozaotumao2025
2026-07-18 21:10:39 +08:00
commit 1b90e552a5
91 changed files with 9056 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
import type { ApiClient } from '../api/client'
import { healthSchema } from '../schemas/health'
export const healthService = (api: ApiClient) => ({ get: () => api.request('/health', { schema: healthSchema }) })