You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
468 B
26 lines
468 B
package controllers |
|
|
|
import ( |
|
"encoding/json" |
|
"net/http" |
|
) |
|
|
|
type j map[string]interface{} |
|
|
|
func internalErrorHandler(w http.ResponseWriter, err error) { |
|
if err == nil { |
|
return |
|
} |
|
|
|
w.WriteHeader(http.StatusInternalServerError) |
|
json.NewEncoder(w).Encode(j{"error": err.Error()}) |
|
} |
|
|
|
func badRequestHandler(w http.ResponseWriter, err error) { |
|
if err == nil { |
|
return |
|
} |
|
|
|
w.WriteHeader(http.StatusBadRequest) |
|
json.NewEncoder(w).Encode(j{"error": err.Error()}) |
|
}
|
|
|