@@ -46,7 +46,8 @@ func LoginRoute(w http.ResponseWriter, r *http.Request){
}
- PrintConsole(string(entry))
+ entryJSON := json.Marshal(entry)
+ PrintConsole(entryJSON)
json.NewEncoder(w).Encode(userGroups)
return