summaryrefslogtreecommitdiff
path: root/shrine/enums/http.go
blob: c7a4ab09b2232590eebd8b95fb9b2d1171e1c236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package enums

type HTTPMethod string

const (
	GET     HTTPMethod = "GET"
	POST    HTTPMethod = "POST"
	PUT     HTTPMethod = "PUT"
	PATCH   HTTPMethod = "PATCH"
	DELETE  HTTPMethod = "DELETE"
	OPTIONS HTTPMethod = "OPTIONS"
	HEAD    HTTPMethod = "HEAD"
)