15 lines
159 B
Go
15 lines
159 B
Go
|
package upgrade
|
||
|
|
||
|
// Method represents available http methods
|
||
|
type Method uint8
|
||
|
|
||
|
// http methods
|
||
|
const (
|
||
|
Options Method = iota
|
||
|
Get
|
||
|
Head
|
||
|
Post
|
||
|
Put
|
||
|
Delete
|
||
|
)
|