Browse Source

SERVER_PORT

Matheus 6 years ago
parent
commit
41788b0303
5 changed files with 33 additions and 2 deletions
  1. BIN
      build
  2. 1 1
      config.go
  3. 3 0
      config/config.go
  4. 27 0
      core/database/database.go
  5. 2 1
      main.go

BIN
build


+ 1 - 1
config.go

@@ -1,4 +1,4 @@
1 1
 package main
2 2
 
3 3
 //ServerPort para escuta do servidor
4
-const ServerPort = 8080
4
+const SERVER_PORT = 8080

+ 3 - 0
config/config.go

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

+ 27 - 0
core/database/database.go

@@ -0,0 +1,27 @@
1
+package models
2
+
3
+import (
4
+	"database/sql"
5
+	"log"
6
+
7
+	_ "github.com/go-sql-driver/mysql"
8
+)
9
+
10
+var db *sql.DB
11
+
12
+func Init(dataSourceName string) error {
13
+
14
+	var err error
15
+
16
+	db, err = sql.Open("mysql", dataSourceName)
17
+
18
+	if err != nil {
19
+		log.Panic(err)
20
+	}
21
+
22
+	if err = db.Ping(); err != nil {
23
+		log.Panic(err)
24
+	}
25
+
26
+	return err
27
+}

+ 2 - 1
main.go

@@ -11,6 +11,7 @@ import (
11 11
 )
12 12
 
13 13
 func main() {
14
+
14 15
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
15 16
 
16 17
 		router.Add(`\/(.*)`, func(w http.ResponseWriter, r *http.Request) {
@@ -20,5 +21,5 @@ func main() {
20 21
 		router.Match(w, r)
21 22
 	})
22 23
 
23
-	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(ServerPort), nil))
24
+	log.Fatal(http.ListenAndServe(":"+strconv.Itoa(SERVER_PORT), nil))
24 25
 }