Browse Source

Boototstraping

William Wiechorek 6 years ago
parent
commit
18d29624e9
6 changed files with 32 additions and 23 deletions
  1. 0 0
      core/router/router.go
  2. 4 2
      main.go
  3. 0 20
      routes.go
  4. 1 1
      config.go
  5. 14 0
      src/config/routes.go
  6. 13 0
      src/controller/Test/Test.go

core/router/main.go → core/router/router.go


+ 4 - 2
main.go

@@ -4,12 +4,14 @@ import (
4 4
 	"log"
5 5
 	"net/http"
6 6
 	"strconv"
7
+
8
+	"./src/config"
7 9
 )
8 10
 
9 11
 func main() {
10 12
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
11
-		Routes.Match(w, r)
13
+		config.Routes.Match(w, r)
12 14
 	})
13 15
 
14
-	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
16
+	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(config.SERVER_PORT), nil))
15 17
 }

+ 0 - 20
routes.go

@@ -1,20 +0,0 @@
1
-package main
2
-
3
-import (
4
-	"fmt"
5
-	"html"
6
-	"net/http"
7
-
8
-	"./core/router"
9
-)
10
-
11
-//Routes rotas de acesso
12
-var Routes = router.Routes{
13
-	router.Route{
14
-		`\/(.*)`,
15
-		func(w http.ResponseWriter, r *http.Request, vars []string) {
16
-			fmt.Println(vars[0])
17
-			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
18
-		},
19
-	},
20
-}

+ 1 - 1
config.go

@@ -1,3 +1,3 @@
1
-package main
1
+package config
2 2
 
3 3
 const SERVER_PORT = 8080

+ 14 - 0
src/config/routes.go

@@ -0,0 +1,14 @@
1
+package config
2
+
3
+import (
4
+	"../../core/router"
5
+	"../controller/test"
6
+)
7
+
8
+//Routes rotas de acesso
9
+var Routes = router.Routes{
10
+	router.Route{
11
+		`\/(.*)`,
12
+		test.Inicial,
13
+	},
14
+}

+ 13 - 0
src/controller/Test/Test.go

@@ -0,0 +1,13 @@
1
+package test
2
+
3
+import (
4
+	"fmt"
5
+	"html"
6
+	"net/http"
7
+)
8
+
9
+//Inicial : Func
10
+func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
11
+	fmt.Println(vars[0])
12
+	fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
13
+}