about summary refs log tree commit diff
path: root/eg/base.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@lumberjaph.net>2013-05-08 21:16:32 -0700
committerFranck Cuny <franck@lumberjaph.net>2013-05-08 21:16:32 -0700
commit69c54a10594e04ab3c27b1133630ce783ae331d3 (patch)
treec4eabcd15538ed24894eef723d37aa72d621960b /eg/base.go
parentClean up messy path before matching a request. (diff)
downloadpath-router-69c54a10594e04ab3c27b1133630ce783ae331d3.tar.gz
clean up last mention of mooh
Diffstat (limited to '')
-rw-r--r--eg/base.go28
1 files changed, 14 insertions, 14 deletions
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,