You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
418 B
Go
16 lines
418 B
Go
package httpdata
|
|
|
|
type Code string
|
|
|
|
const (
|
|
CodeOK Code = "ok"
|
|
CodeError Code = "error"
|
|
CodeBadRequest Code = "bad_request"
|
|
CodeInternal Code = "internal"
|
|
CodeInternalUpstream Code = "internal.upstream"
|
|
CodeUnexpect Code = "unexpect"
|
|
CodeUnexpectPanic Code = "unexpect.panic"
|
|
CodeUnknown Code = "unknown"
|
|
CodeUnauthorized Code = "unauthorized"
|
|
)
|