aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
blob: 6e0d936b1b2c1c3e914986ed21c54b64aa2cd17d (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
package main

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

type Item struct{}

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 = sleepy.NewAPI()
	api.AddResource(item, "/items")
	api.Start(3000)

}
bgstack15