magnetico/cmd/magneticow/util.go

9 lines
173 B
Go
Raw Normal View History

2018-12-24 19:30:07 +01:00
package main
import "net/http"
func handlerError(err error, w http.ResponseWriter) {
w.WriteHeader(http.StatusInternalServerError)
_, _ = w.Write([]byte(err.Error()))
}