fixed missing verb

This commit is contained in:
Colin Henry 2020-06-15 10:26:32 -07:00
parent 6c3226ff63
commit cb0bc37e6b

View File

@ -10,6 +10,7 @@ import (
// based on a request's method
func MutliHandler(h map[string]http.Handler) (http.HandlerFunc, error) {
m := map[string]bool{
http.MethodGet: true,
http.MethodHead: true,
http.MethodPost: true,
http.MethodPut: true,