const net/http.StatusMethodNotAllowed

7 uses

	net/http (current package)
		status.go#L41: 	StatusMethodNotAllowed             = 405 // RFC 7231, 6.5.5
		status.go#L110: 	StatusMethodNotAllowed:             "Method Not Allowed",

	github.com/aws/aws-sdk-go/aws/ec2metadata
		token_provider.go#L57: 			case http.StatusForbidden, http.StatusNotFound, http.StatusMethodNotAllowed:

	golang.org/x/pkgsite/internal/frontend
		details.go#L30: 		return &serverError{status: http.StatusMethodNotAllowed}
		search.go#L228: 		return &serverError{status: http.StatusMethodNotAllowed}

	golang.org/x/pkgsite/internal/middleware
		accept_requests.go#L29: 			http.Error(w, http.StatusText(http.StatusMethodNotAllowed), http.StatusMethodNotAllowed)