aboutsummaryrefslogtreecommitdiff
path: root/tests/test.go
blob: 4610f3d9016c97b792ef8f58e0c645158837d398 (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 (
    "sleepy"
    "net/url"
)

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)
}

bgstack15