1 Star 0 Fork 29

wangyfbe/go-admin-core

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
error_code.go 693 Bytes
Copy Edit Raw Blame History
lwnmengjing authored 2021-01-20 00:23 +08:00 . 增加errors库
package errors
import "net/http"
//go:generate stringer -type ErrorCode -output error_code_string.go
type ErrorCode int32
const (
OK ErrorCode = http.StatusOK
BadRequest ErrorCode = http.StatusBadRequest
Unauthorized ErrorCode = http.StatusUnauthorized
Forbidden ErrorCode = http.StatusForbidden
NotFound ErrorCode = http.StatusNotFound
MethodNotAllowed ErrorCode = http.StatusMethodNotAllowed
Timeout ErrorCode = http.StatusRequestTimeout
Conflict ErrorCode = http.StatusConflict
InternalServerError ErrorCode = http.StatusInternalServerError
)
func (e ErrorCode) Code() int32 {
return int32(e)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wangyfbe/go-admin-core.git
git@gitee.com:wangyfbe/go-admin-core.git
wangyfbe
go-admin-core
go-admin-core
v1.10.3

Search