|
@@ -9,26 +9,27 @@ import (
|
9
|
9
|
|
10
|
10
|
type closure func(http.ResponseWriter, *http.Request, []string)
|
11
|
11
|
|
12
|
|
-type route struct {
|
|
12
|
+//Route struct de uma rota
|
|
13
|
+type Route struct {
|
13
|
14
|
Pattern string
|
14
|
15
|
Handler closure
|
15
|
16
|
}
|
16
|
17
|
|
17
|
18
|
//Routes array of route
|
18
|
|
-type Routes []route
|
|
19
|
+type Routes []Route
|
19
|
20
|
|
20
|
21
|
var routes Routes
|
21
|
22
|
|
22
|
23
|
//Add adicionar rota em routes
|
23
|
|
-func Add(pattern string, handler closure) {
|
24
|
|
- routes = append(routes, route{
|
25
|
|
- pattern,
|
26
|
|
- handler,
|
27
|
|
- })
|
28
|
|
-}
|
|
24
|
+// func Add(pattern string, handler closure) {
|
|
25
|
+// routes = append(routes, Route{
|
|
26
|
+// pattern,
|
|
27
|
+// handler,
|
|
28
|
+// })
|
|
29
|
+// }
|
29
|
30
|
|
30
|
31
|
//Match retorna a rota encontrada
|
31
|
|
-func Match(w http.ResponseWriter, r *http.Request) {
|
|
32
|
+func (routes Routes) Match(w http.ResponseWriter, r *http.Request) {
|
32
|
33
|
url := r.URL.Path
|
33
|
34
|
for _, element := range routes {
|
34
|
35
|
when := element.Pattern
|