10 lines
133 B
Go
Raw Normal View History

2024-10-17 14:49:50 +08:00
package errcode
const (
ErrWeixinApi = iota + ErrUser
)
func UserMsgInit(m msg) {
m[ErrWeixinApi] = "微信接口调用失败"
}