Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrNotFound = &HttpResponse{HTTPStatusCode: 404, StatusText: "Resource not found."}
Functions ¶
func ErrBadRequest ¶
func ErrServerInternal ¶
func ErrUnauthorized ¶
func TextOkRender ¶
Types ¶
type HttpResponse ¶
type HttpResponse struct { Err error `json:"-"` // low-level runtime error HTTPStatusCode int `json:"-"` // http response status code StatusText string `json:"status"` // user-level status message AppCode int64 `json:"code,omitempty"` // application-specific error code ErrorText string `json:"error,omitempty"` // application-level error message, for debugging }
func (*HttpResponse) Render ¶
func (e *HttpResponse) Render(w http.ResponseWriter, r *http.Request) error
Click to show internal directories.
Click to hide internal directories.