aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/README.md b/README.md
index 5447f30..87a9e4a 100644
--- a/README.md
+++ b/README.md
@@ -13,9 +13,7 @@ import (
)
type Item struct {
- sleepy.PostNotSupported
- sleepy.PutNotSupported
- sleepy.DeleteNotSupported
+ sleepy.BaseResource
}
func (item Item) Get(values url.Values) (int, interface{}) {
bgstack15