aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 581fddafc08c7ccd3aeb0fe9f35d5c1a935f4e0c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
## Sleepy

#### A RESTful framework for Go

Sleepy is a micro-framework for building RESTful APIs.

```go
package main

import (
    "net/url"
    "github.com/dougblack/sleepy"
)

type Item struct {
    sleepy.PostNotSupported
    sleepy.PutNotSupported
    sleepy.DeleteNotSupported
}

func (item Item) Get(values ...url.Values) (int, interface{}) {
    items := []string{"item1", "item2"}
    data := map[string][]string{"items": items}

    return 200, data
}

func main() {

    item := new(Item)

    var api = new(sleepy.Api)
    api.AddResource(item, "/items")
    api.Start(3000)

}
```

Now if we curl that endpoint:

```bash
curl localhost:3000/items
{"items": ["item1", "item2"]}
```

Stay tuned.
bgstack15