diff --git a/net/http/multihandler.go b/net/http/multihandler.go index bb5d8f8..473fdda 100644 --- a/net/http/multihandler.go +++ b/net/http/multihandler.go @@ -30,7 +30,7 @@ func MutliHandler(h map[string]http.Handler) (http.HandlerFunc, error) { if hdlr, ok := h[r.Method]; ok { hdlr.ServeHTTP(w, r) } else { - NotFoundHandler.ServeHTTP(w, r) + NotImplementedHandler.ServeHTTP(w, r) } }, nil }