diff options
author | Doug Black <dougblack@gatech.edu> | 2014-01-24 07:56:47 -0800 |
---|---|---|
committer | Doug Black <dougblack@gatech.edu> | 2014-01-24 07:56:47 -0800 |
commit | b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d (patch) | |
tree | 8ebad8046d0930f4942ddb1a14b1c279b232db90 /core.go | |
parent | go fmt (diff) | |
download | sleepy-b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d.tar.gz sleepy-b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d.tar.bz2 sleepy-b77ada9a5a4ae049f2b5f3eff6ca7a66a154f49d.zip |
reorg
Diffstat (limited to 'core.go')
-rw-r--r-- | core.go | 26 |
1 files changed, 1 insertions, 25 deletions
@@ -5,36 +5,12 @@ import ( ) type Resource interface { - Get(p [string][]string) string + Get(map[string][]string) string Post(map[string][]string) string Put(map[string][]string) string Delete(map[string][]string) string } -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." -} - type Route struct { resource Resource path string |