const net/http.StatusMethodNotAllowed

7 uses

	net/http (current package)
		server.go#L2708: 				Error(w, StatusText(StatusMethodNotAllowed), StatusMethodNotAllowed)
		status.go#L41: 	StatusMethodNotAllowed             = 405 // RFC 9110, 15.5.6
		status.go#L137: 	case StatusMethodNotAllowed:

	go.uber.org/zap
		http_handler.go#L94: 		w.WriteHeader(http.StatusMethodNotAllowed)

	google.golang.org/grpc/internal/transport
		handler_server.go#L57: 		http.Error(w, msg, http.StatusMethodNotAllowed)
		http2_server.go#L573: 			httpStatus:     http.StatusMethodNotAllowed,