You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
267 B

package otosaas
type push struct {
}
// Success @Title 推送成功
func (p *push) Success() string {
return `{"code": 0, "message": "推送成功"}`
}
// Error @Title 推送失败
func (p *push) Error() string {
return `{"code": 1 "message": "推送失败"}`
}