aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-27 10:51:47 -0500
committerDoug Black <dblack@twilio.com>2014-01-27 10:51:47 -0500
commitd0ff8ab57af18c12e0357314cce65542158b525e (patch)
treecf32b7f11a9ee3a3918e93b9adea8c00619b4d95 /README.md
parentupdate README (diff)
downloadsleepy-d0ff8ab57af18c12e0357314cce65542158b525e.tar.gz
sleepy-d0ff8ab57af18c12e0357314cce65542158b525e.tar.bz2
sleepy-d0ff8ab57af18c12e0357314cce65542158b525e.zip
update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index f5075fd..a5094bf 100644
--- a/README.md
+++ b/README.md
@@ -9,12 +9,10 @@ package main
import (
"net/url"
-
"github.com/dougblack/sleepy"
)
-type Item struct {
-}
+type Item struct { }
func (item Item) Get(values url.Values) (int, interface{}) {
items := []string{"item1", "item2"}
@@ -39,8 +37,9 @@ curl localhost:3000/items
{"items": ["item1", "item2"]}
```
-Stay tuned.
+`sleepy` has not been officially released yet, as it is still in active
+development.
## License
-Sleepy is released under the [MIT License](http://opensource.org/licenses/MIT).
+`sleepy` is released under the [MIT License](http://opensource.org/licenses/MIT).
bgstack15