Browse Source

Boototstraping

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

+ 8 - 5
core/router/main.go

@@ -1,6 +1,7 @@
1 1
 package router
2 2
 
3 3
 import (
4
+	"fmt"
4 5
 	"net/http"
5 6
 )
6 7
 
@@ -12,11 +13,13 @@ type route struct {
12 13
 //Routes array of route
13 14
 type Routes []route
14 15
 
15
-func (routes *Routes) add(pattern string, handler http.Handler) {
16
-	append(routes, route[
17
-		pattern,
18
-		handler,
19
-	])
16
+//Add adicionar rota em routes
17
+func (Routes) Add(pattern string, test string) {
18
+	fmt.Print(pattern)
19
+	// append(routes, route{
20
+	// 	pattern,
21
+	// 	handler,
22
+	// })
20 23
 }
21 24
 
22 25
 // func findURLMatch(data urls, url string) string {

+ 3 - 3
main.go

@@ -6,13 +6,13 @@ import (
6 6
 	"log"
7 7
 	"net/http"
8 8
 	"strconv"
9
+
10
+	router "./core/router"
9 11
 )
10 12
 
11 13
 func main() {
12 14
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
13
-		Routes.add("Url", func() {
14
-			fmt.Println("Test")
15
-		})
15
+		router.Routes.Add("Url", "test")
16 16
 		fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))
17 17
 	})
18 18