iperf3exporter/vendor/github.com/DisgoOrg/restclient/methods.go
Marvin Preuss 2343c9588a
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
first commit
2021-10-20 10:08:56 +02:00

18 lines
293 B
Go

package restclient
// Method is a HTTP request Method
type Method string
// HTTP Methods used by Discord
const (
DELETE Method = "DELETE"
GET Method = "GET"
POST Method = "POST"
PUT Method = "PUT"
PATCH Method = "PATCH"
)
func (m Method) String() string {
return string(m)
}