Browse Source

isConnected = true

Matheus Querido 6 years ago
parent
commit
29856f76a1
2 changed files with 3 additions and 1 deletions
  1. 2 0
      core/database/database.go
  2. 1 1
      src/controller/Test/Test.go

+ 2 - 0
core/database/database.go

35
 
35
 
36
 	DB, err = sql.Open("mysql", dataSource)
36
 	DB, err = sql.Open("mysql", dataSource)
37
 
37
 
38
+	IsConnected = true
39
+
38
 	if err != nil {
40
 	if err != nil {
39
 		IsConnected = false
41
 		IsConnected = false
40
 		Error = err
42
 		Error = err

+ 1 - 1
src/controller/Test/Test.go

18
 
18
 
19
 //Inicial : Func
19
 //Inicial : Func
20
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
20
 func Inicial(w http.ResponseWriter, r *http.Request, vars []string) {
21
-	fmt.Print(r.Context().Value("Username").(string))
21
+	fmt.Print(r.Context().Value("Username"))
22
 	var Errors errorHandler.Errors
22
 	var Errors errorHandler.Errors
23
 
23
 
24
 	user, err := auth.GetUser(r)
24
 	user, err := auth.GetUser(r)