ws/internal/http/upgrade/methods.go

15 lines
159 B
Go
Raw Normal View History

2021-05-14 15:19:02 +00:00
package upgrade
// Method represents available http methods
type Method uint8
// http methods
const (
Options Method = iota
Get
Head
Post
Put
Delete
)