2025-11-11 23:51:17 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* API 统一导出入口
|
|
|
|
|
|
* 所有 API 服务都从这里导出,方便统一管理和使用
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// HTTP 实例
|
|
|
|
|
|
export { default as http, default as request } from './http'
|
|
|
|
|
|
|
|
|
|
|
|
// 认证相关 API
|
|
|
|
|
|
export * from './auth'
|
|
|
|
|
|
|
|
|
|
|
|
// 聊天相关 API
|
|
|
|
|
|
export { ChatMessageApi } from './chat'
|
|
|
|
|
|
|
2025-11-13 01:06:28 +08:00
|
|
|
|
// 用户提示词 API
|
|
|
|
|
|
export { UserPromptApi } from './userPrompt'
|
|
|
|
|
|
|
2025-11-11 23:51:17 +08:00
|
|
|
|
// 通用服务 API
|
|
|
|
|
|
export { CommonService } from './common'
|
|
|
|
|
|
export { default as CommonServiceDefault } from './common'
|
|
|
|
|
|
|
|
|
|
|
|
// TikHub API
|
|
|
|
|
|
export { TikhubService, default as TikhubServiceDefault } from './tikhub'
|
|
|
|
|
|
export { InterfaceType, MethodType, InterfaceUrlMap, ParamType } from './tikhub/types'
|
|
|
|
|
|
|