aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/net/http/method.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/net/http/method.go')
-rw-r--r--libgo/go/net/http/method.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/libgo/go/net/http/method.go b/libgo/go/net/http/method.go
new file mode 100644
index 00000000000..b74f9604d34
--- /dev/null
+++ b/libgo/go/net/http/method.go
@@ -0,0 +1,20 @@
+// Copyright 2015 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+package http
+
+// Common HTTP methods.
+//
+// Unless otherwise noted, these are defined in RFC 7231 section 4.3.
+const (
+ MethodGet = "GET"
+ MethodHead = "HEAD"
+ MethodPost = "POST"
+ MethodPut = "PUT"
+ MethodPatch = "PATCH" // RFC 5741
+ MethodDelete = "DELETE"
+ MethodConnect = "CONNECT"
+ MethodOptions = "OPTIONS"
+ MethodTrace = "TRACE"
+)