Move httpError func to generic.go

pull/4/head
maru 7 months ago
parent 01c037a7a2
commit 422a850354
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D

@ -1,11 +0,0 @@
package api
import (
"log"
"net/http"
)
func httpError(w http.ResponseWriter, r *http.Request, err error, code int) {
log.Printf("%s: %s\n", r.URL.Path, err)
http.Error(w, err.Error(), code)
}

@ -5,6 +5,7 @@ import (
"encoding/gob"
"encoding/json"
"fmt"
"log"
"net/http"
"strconv"
@ -263,6 +264,11 @@ func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
}
func httpError(w http.ResponseWriter, r *http.Request, err error, code int) {
log.Printf("%s: %s\n", r.URL.Path, err)
http.Error(w, err.Error(), code)
}
// auth
type GenericAuthRequest struct {

Loading…
Cancel
Save