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,6 +35,8 @@ func Init(config Config) error {
35 35
 
36 36
 	DB, err = sql.Open("mysql", dataSource)
37 37
 
38
+	IsConnected = true
39
+
38 40
 	if err != nil {
39 41
 		IsConnected = false
40 42
 		Error = err

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

@@ -18,7 +18,7 @@ type Profile struct {
18 18
 
19 19
 //Inicial : Func
20 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 22
 	var Errors errorHandler.Errors
23 23
 
24 24
 	user, err := auth.GetUser(r)