From 69c54a10594e04ab3c27b1133630ce783ae331d3 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Wed, 8 May 2013 21:16:32 -0700 Subject: clean up last mention of mooh --- eg/base.go | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'eg/base.go') diff --git a/eg/base.go b/eg/base.go index 6485071..dcfbd35 100644 --- a/eg/base.go +++ b/eg/base.go @@ -1,66 +1,66 @@ package main import ( - "github.com/franckcuny/mooh" + "github.com/franckcuny/router" "net/http" ) -func TestId(req *mooh.Request) (mooh.Response, error) { - r := mooh.Response{ +func TestId(req *router.Request) (router.Response, error) { + r := router.Response{ Status: 200, Content: "id", } return r, nil } -func TestIdFoo(req *mooh.Request) (mooh.Response, error) { - r := mooh.Response{ +func TestIdFoo(req *router.Request) (router.Response, error) { + r := router.Response{ Status: 200, Content: "foo", } return r, nil } -func Test(req *mooh.Request) (mooh.Response, error) { - resp := mooh.Response{} +func Test(req *router.Request) (router.Response, error) { + resp := router.Response{} resp.Status = 200 resp.Content = "duh" return resp, nil } -func TestPut(req *mooh.Request) (mooh.Response, error) { - resp := mooh.Response{} +func TestPut(req *router.Request) (router.Response, error) { + resp := router.Response{} resp.Status = 200 resp.Content = "ok" return resp, nil } func main() { - router := mooh.BuildRouter() + router := router.BuildRouter() router.AddRoute( - &mooh.Route{ + &router.Route{ Method: "GET", Path: "/foo/bar/baz", Code: Test, }, ) router.AddRoute( - &mooh.Route{ + &router.Route{ Method: "PUT", Path: "/foo/bar/baz", Code: TestPut, }, ) router.AddRoute( - &mooh.Route{ + &router.Route{ Method: "GET", Path: "/test/{id}", Code: TestId, }, ) router.AddRoute( - &mooh.Route{ + &router.Route{ Method: "GET", Path: "/test/{id}/foo", Code: TestIdFoo, -- cgit 1.4.1