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
 package router
1
 package router
2
 
2
 
3
 import (
3
 import (
4
+	"fmt"
4
 	"net/http"
5
 	"net/http"
5
 )
6
 )
6
 
7
 
12
 //Routes array of route
13
 //Routes array of route
13
 type Routes []route
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
 // func findURLMatch(data urls, url string) string {
25
 // func findURLMatch(data urls, url string) string {

+ 3 - 3
main.go

6
 	"log"
6
 	"log"
7
 	"net/http"
7
 	"net/http"
8
 	"strconv"
8
 	"strconv"
9
+
10
+	router "./core/router"
9
 )
11
 )
10
 
12
 
11
 func main() {
13
 func main() {
12
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
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
 		fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))
16
 		fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))
17
 	})
17
 	})
18
 
18