From 4d9af7b0d3a63752365f88bcdba9524b2c1a5f29 Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Tue, 28 May 2019 10:41:59 +0200 Subject: [PATCH] test --- routes/user/userEndpoints.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/routes/user/userEndpoints.go b/routes/user/userEndpoints.go index 5a65fc5..7ca32be 100644 --- a/routes/user/userEndpoints.go +++ b/routes/user/userEndpoints.go @@ -22,10 +22,10 @@ type tokenClaims struct { jwt.StandardClaims } -type AuthResponse struct{ - Success bool `json:"success"` +type AuthResponse struct { + Success bool `json:"success"` Message string `json:"message"` - Token string `json:"token"` + Token string `json:"token"` } // `/authenticate` endpoint does not require Authentication