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