zhengyiming
2025-06-16 53b0a0b7b5594e1e4ff6036703fa00af84c5ea9f
1
2
3
4
5
6
7
8
9
10
11
12
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request'
 
/** 此处后端没有提供注释 GET /api/health */
export async function (
  options?: API.RequestConfig) {
  return request<any>('/api/health', {
  method: 'GET',
    ...(options || {}),
  });
}