Spaces:
Sleeping
Sleeping
File size: 464 Bytes
d97b8f9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import apiClient from './axios-instance';
import { get, getList, post, put, patch, del, uploadFile } from './api-utils';
import healthApi, { getSystemHealth, checkHealth, type HealthResponse } from './health';
export {
apiClient,
get,
getList,
post,
put,
patch,
del,
uploadFile,
// Health API exports
healthApi,
getSystemHealth,
checkHealth
};
// Re-export the type with 'export type'
export type { HealthResponse }; |