mirror of
https://github.com/offen/website.git
synced 2024-11-23 01:20:29 +01:00
23 lines
405 B
Go
23 lines
405 B
Go
|
package http
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
type errorResponse struct {
|
||
|
Error string `json:"error"`
|
||
|
Status int `json:"status"`
|
||
|
}
|
||
|
|
||
|
func jsonError(err error, status int) []byte {
|
||
|
r := errorResponse{err.Error(), status}
|
||
|
b, _ := json.Marshal(r)
|
||
|
return b
|
||
|
}
|
||
|
|
||
|
func RespondWithJSONError(w http.ResponseWriter, err error, status int) {
|
||
|
w.WriteHeader(status)
|
||
|
w.Write(jsonError(err, status))
|
||
|
}
|