AIchat/src/utils/api.js

10 lines
206 B
JavaScript
Raw Normal View History

2025-05-27 09:05:29 +00:00
import {httpPost,httpGet} from "./http"
import {getEnvBaseUrl} from "./index"
2025-06-06 03:12:09 +00:00
2025-05-27 09:05:29 +00:00
const baseUrl=getEnvBaseUrl();
// 发送文本消息
const endMsg=async (params)=>{
return await httpGet(baseUrl+url,data)
2025-06-06 03:12:09 +00:00
}