aboutsummaryrefslogtreecommitdiff
path: root/http.go
diff options
context:
space:
mode:
authorDoug Black <dougblack@gatech.edu>2014-01-24 07:56:47 -0800
committerDoug Black <dougblack@gatech.edu>2014-01-24 07:56:47 -0800
commitb77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d (patch)
tree8ebad8046d0930f4942ddb1a14b1c279b232db90 /http.go
parentgo fmt (diff)
downloadsleepy-b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d.tar.gz
sleepy-b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d.tar.bz2
sleepy-b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d.zip
reorg
Diffstat (limited to 'http.go')
-rw-r--r--http.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/http.go b/http.go
new file mode 100644
index 0000000..712a080
--- /dev/null
+++ b/http.go
@@ -0,0 +1,26 @@
+package sleepy
+
+type GetNotSupported struct{}
+
+func (GetNotSupported) Get(map[string][]string) string {
+ return "Nope."
+}
+
+type PostNotSupported struct{}
+
+func (PostNotSupported) Post(map[string][]string) string {
+ return "Nope."
+}
+
+type PutNotSupported struct{}
+
+func (PutNotSupported) Put(map[string][]string) string {
+ return "Nope."
+}
+
+type DeleteNotSupported struct{}
+
+func (DeleteNotSupported) Delete(map[string][]string) string {
+ return "Nope."
+}
+
bgstack15