Browse Source

Router usando context

William Wiechorek 6 years ago
parent
commit
270fd96da7
2 changed files with 4 additions and 0 deletions
  1. 2 0
      core/database/database.go
  2. 2 0
      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

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

@@ -19,6 +19,8 @@ type Profile struct {
19 19
 //Inicial : Func
20 20
 func Inicial(w http.ResponseWriter, r *http.Request) {
21 21
 	fmt.Println(r.Context().Value("parameters").([]string))
22
+	fmt.Print(r.Context().Value("Username"))
23
+
22 24
 	var Errors errorHandler.Errors
23 25
 
24 26
 	user, err := auth.GetUser(r)