mirror of
https://github.com/fumiama/NanoBot.git
synced 2026-06-06 03:00:24 +08:00
15 lines
343 B
Go
15 lines
343 B
Go
package nano
|
|
|
|
var (
|
|
// StandardAPI 正式环境接口域名
|
|
StandardAPI = `https://api.sgroup.qq.com`
|
|
// SandboxAPI 沙箱环境接口域名
|
|
SandboxAPI = `https://sandbox.api.sgroup.qq.com`
|
|
)
|
|
|
|
// CodeMessageBase 各种消息都有的 code + message 基类
|
|
type CodeMessageBase struct {
|
|
C int `json:"code"`
|
|
M string `json:"message"`
|
|
}
|