mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-10 22:17:44 +00:00
8 lines
207 B
Go
8 lines
207 B
Go
package api
|
|
|
|
import "net/http"
|
|
|
|
func (a *api) errorResponse(w http.ResponseWriter, r *http.Request, status int, message string) {
|
|
w.Header().Set("X-Apollo-Error", message)
|
|
http.Error(w, message, status)
|
|
}
|