aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test.go')
-rw-r--r--tests/test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test.go b/tests/test.go
index 070d4b6..8ccbfbd 100644
--- a/tests/test.go
+++ b/tests/test.go
@@ -2,13 +2,11 @@ package main
import (
"net/url"
- "sleepy"
+
+ "github.com/dougblack/sleepy"
)
type Bar struct {
- sleepy.PostNotSupported
- sleepy.PutNotSupported
- sleepy.DeleteNotSupported
}
func (b Bar) Get(values url.Values) (int, interface{}) {
bgstack15