zhaoyingbo 18a95387ee
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 33s
CI Monitor CI/CD / deploy (push) Successful in 37s
chore: 更新lint-staged和commitlint配置
2024-07-25 01:09:24 +00:00

45 lines
853 B
TypeScript

import netTool from "../netTool"
const API_KEY = "1dfz4wlpbbgiky0"
const URL = "https://egg.imoaix.cn/message"
const message = async (body: any) => {
try {
const res = await netTool.post(URL, {
api_key: API_KEY,
...body,
})
return res
} catch {
return null
}
}
message.byGroupId = async (group_id: string, content: string) => {
return message({
group_id,
msg_type: "interactive",
content,
})
}
message.byChatId = async (chat_id: string, content: string) => {
return message({
receive_id: chat_id,
receive_id_type: "chat_id",
msg_type: "interactive",
content,
})
}
message.byUserId = async (user_id: string, content: string) => {
return message({
receive_id: user_id,
receive_id_type: "user_id",
msg_type: "interactive",
content,
})
}
export default message