mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 07:10:55 +00:00
popular status codes
This commit is contained in:
parent
0ac2e47162
commit
1004678005
@ -3,9 +3,16 @@ package response
|
||||
import (
|
||||
"strconv"
|
||||
|
||||
"net/http"
|
||||
|
||||
beecontext "github.com/astaxie/beego/context"
|
||||
)
|
||||
|
||||
const (
|
||||
NotFound StatusCode = http.StatusNotFound
|
||||
BadRequest StatusCode = http.StatusBadRequest
|
||||
)
|
||||
|
||||
// Renderer defines an http response renderer
|
||||
type Renderer interface {
|
||||
Render(ctx *beecontext.Context)
|
||||
|
Loading…
Reference in New Issue
Block a user