1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 07:33:28 +00:00
Beego/pkg/context/response.go
2020-08-06 16:07:18 +01:00

28 lines
481 B
Go

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))
}