17 lines
472 B
Go
Raw Normal View History

2024-11-02 11:49:49 +08:00
package errcode
const (
ErrEaLinkInstert = ErrEncounter + iota
ErrEncounterNoData
2024-11-02 11:49:49 +08:00
)
func EnocunterMsgInit(m msg) {
m[ErrEaLinkInstert] = "路遇添加成功,但关联毛茸茸失败"
m[ErrEncounterNoData] = "没有查询到数据"
2024-11-12 12:24:49 +08:00
}
func EncounterMsgUserInit(m msg) {
m[ErrEaLinkInstert] = "路遇上传成功啦。但是不小心让毛茸茸跑丢了。/(ㄒoㄒ)/~~"
m[ErrEncounterNoData] = "没有查询到你喜欢的猫猫路遇,为他们添加吧。"
2024-11-12 12:24:49 +08:00
}