From e6559a7f29a8d1d29aa59a8c9b5127f4162d4549 Mon Sep 17 00:00:00 2001 From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com> Date: Tue, 5 May 2020 17:54:06 +0200 Subject: [PATCH] Update main.go --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 3642231..0331927 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,9 @@ func main() { // Parse the flags flag.Parse() mux := http.NewServeMux() + fmt.Println("Server started") mux.HandleFunc("/auth", func(w http.ResponseWriter, r *http.Request) { + fmt.Println("New request") query := r.URL.Query() fmt.Println(query) // host := strings.Split(query.Get("state"), "-")[1] -- GitLab