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