mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-12 00:36:03 +00:00
18 lines
529 B
TypeScript
18 lines
529 B
TypeScript
/**
|
||
* @deprecated 此文件仅用于向后兼容。请使用新的 client:
|
||
* - import { backendClient } from '@/app/infra/http'
|
||
* - import { getCloudServiceClient } from '@/app/infra/http'
|
||
*/
|
||
|
||
// 重新导出新的客户端实现,保持向后兼容
|
||
export {
|
||
backendClient as httpClient,
|
||
systemInfo,
|
||
type ResponseData,
|
||
type RequestConfig,
|
||
} from './index';
|
||
|
||
// 为了兼容性,重新导出 BackendClient 作为 HttpClient
|
||
import { BackendClient } from './BackendClient';
|
||
export const HttpClient = BackendClient;
|