blob: 62aa8acedd8d54b8025542db682116a09c62aaa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
## Sleepy
#### A RESTful framework for Go
Sleepy is not done yet. Here is a potential target API.
```go
import (
"net/http"
"sleepy"
)
type Item struct { }
func (item *Item) Get(foo string, bar int) (interface{}, int, http.Headers) {
return map[string]int { foo : bar}, 200, nil
}
func main() {
item = new(Item)
var api = new(sleepy.Api)
api.AddResource(item, "/item")
request, _ := http.NewRequest("GET", "/item", nil)
fmt.Println(api.HandleRequest(request))
}
```
Stay tuned.
|