blob: d225072d2cd42f5382f5f59a1e62d58833b88b70 (
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
|
package main
import (
"net/url"
"sleepy"
)
type Bar struct {
sleepy.PostNotSupported
sleepy.PutNotSupported
sleepy.DeleteNotSupported
}
func (b Bar) Get(values ...url.Values) (int, interface{}) {
return 200, map[string]string{"hello": "goodbye"}
}
func main() {
bar := new(Bar)
var api = new(sleepy.Api)
api.AddResource(bar, "/bar")
api.Start(3000)
}
|