go项目脚手架
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.

11 lines
248 B

package errs
import (
"net/http"
"sorbet/pkg/rsp"
)
var (
ErrWechatNotBound = rsp.NewError(http.StatusBadRequest, 10001, "微信尚未绑定")
ErrLoginWithUserpwd = rsp.NewError(http.StatusUnauthorized, 10002, "用户名或密码错误")
)