const net/http.MethodPost

6 uses

	net/http (current package)
		method.go#L13: 	MethodPost    = "POST"

	github.com/go-git/go-git/v5/plumbing/transport/http
		receive_pack.go#L43: 	res, err := s.doRequest(ctx, http.MethodPost, url, buf)
		upload_pack.go#L53: 	res, err := s.doRequest(ctx, http.MethodPost, url, content)

	golang.org/x/pkgsite/cmd/frontend
		main.go#L177: 		middleware.AcceptRequests(http.MethodGet, http.MethodPost, http.MethodHead), // accept only GETs, POSTs and HEADs

	golang.org/x/pkgsite/internal/frontend
		fetch.go#L96: 	if r.Method != http.MethodPost {
		server.go#L367: 	if r.Method == http.MethodPost {