1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 09:53:26 +00:00
Beego/pkg/context/response.go

28 lines
481 B
Go
Raw Normal View History

2020-07-22 14:50:08 +00:00
package context
import (
"strconv"
"net/http"
)
const (
//BadRequest indicates http error 400
BadRequest StatusCode = http.StatusBadRequest
//NotFound indicates http error 404
NotFound StatusCode = http.StatusNotFound
)
// StatusCode sets the http response status code
type StatusCode int
func (s StatusCode) Error() string {
return strconv.Itoa(int(s))
}
// Render sets the http status code
func (s StatusCode) Render(ctx *Context) {
ctx.Output.SetStatus(int(s))
}