Source File
methods.go
Belonging Package
github.com/valyala/fasthttp
package fasthttp// HTTP methods were copied from net/http.const (MethodGet = "GET" // RFC 7231, 4.3.1MethodHead = "HEAD" // RFC 7231, 4.3.2MethodPost = "POST" // RFC 7231, 4.3.3MethodPut = "PUT" // RFC 7231, 4.3.4MethodPatch = "PATCH" // RFC 5789MethodDelete = "DELETE" // RFC 7231, 4.3.5MethodConnect = "CONNECT" // RFC 7231, 4.3.6MethodOptions = "OPTIONS" // RFC 7231, 4.3.7MethodTrace = "TRACE" // RFC 7231, 4.3.8)
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |