Last change
on this file since 145 was 145, checked in by Izuru Yakumo, 22 months ago |
Updated the Makefile and vendored depedencies
Signed-off-by: Izuru Yakumo <yakumo.izuru@…>
|
File size:
478 bytes
|
Line | |
---|
1 | package fasthttp
|
---|
2 |
|
---|
3 | // HTTP methods were copied from net/http.
|
---|
4 | const (
|
---|
5 | MethodGet = "GET" // RFC 7231, 4.3.1
|
---|
6 | MethodHead = "HEAD" // RFC 7231, 4.3.2
|
---|
7 | MethodPost = "POST" // RFC 7231, 4.3.3
|
---|
8 | MethodPut = "PUT" // RFC 7231, 4.3.4
|
---|
9 | MethodPatch = "PATCH" // RFC 5789
|
---|
10 | MethodDelete = "DELETE" // RFC 7231, 4.3.5
|
---|
11 | MethodConnect = "CONNECT" // RFC 7231, 4.3.6
|
---|
12 | MethodOptions = "OPTIONS" // RFC 7231, 4.3.7
|
---|
13 | MethodTrace = "TRACE" // RFC 7231, 4.3.8
|
---|
14 | )
|
---|
Note:
See
TracBrowser
for help on using the repository browser.