inline func
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
David 2024-01-02 20:53:59 -05:00
parent 86f643ad0b
commit b6119f320f
1 changed files with 1 additions and 5 deletions

View File

@ -26,7 +26,7 @@ func (h path) ServeHTTP(w http.ResponseWriter, r *http.Request) {
f()
return
}
badMethod(w)
writeJSONerror(w, "method not supported", http.StatusMethodNotAllowed)
}
func writeJSONerror(w http.ResponseWriter, err string, status int) {
@ -87,10 +87,6 @@ func (router *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}
}
func badMethod(w http.ResponseWriter) {
writeJSONerror(w, "method not supported", http.StatusMethodNotAllowed)
}
func getBooks(l Library, w http.ResponseWriter, r *http.Request) {
books, err := l.GetAllBooks(r.Context())
if err != nil {