Browse Source

Boototstraping

William Wiechorek 6 years ago
parent
commit
5ecaf284c3
2 changed files with 4 additions and 3 deletions
  1. 2 2
      core/router/main.go
  2. 2 1
      main.go

+ 2 - 2
core/router/main.go

@@ -7,7 +7,7 @@ import (
7 7
 	"strings"
8 8
 )
9 9
 
10
-type closure func(http.ResponseWriter, *http.Request)
10
+type closure func(http.ResponseWriter, *http.Request, []string)
11 11
 
12 12
 type route struct {
13 13
 	Pattern string
@@ -37,7 +37,7 @@ func Match(w http.ResponseWriter, r *http.Request) {
37 37
 		items := regexSubmatch(pattern, url)
38 38
 
39 39
 		if items[0] == url {
40
-			element.Handler(w, r)
40
+			element.Handler(w, r, items)
41 41
 		}
42 42
 	}
43 43
 }

+ 2 - 1
main.go

@@ -13,7 +13,8 @@ import (
13 13
 func main() {
14 14
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
15 15
 
16
-		router.Add(`\/(.*)`, func(w http.ResponseWriter, r *http.Request) {
16
+		router.Add(`\/(.*)`, func(w http.ResponseWriter, r *http.Request, vars []string) {
17
+			fmt.Println(vars)
17 18
 			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
18 19
 		})
19 20