From cbe8b7dd09fe309a914a406b7020230a1d063ca3 Mon Sep 17 00:00:00 2001 From: Eric Date: Fri, 14 Feb 2020 15:32:02 +0800 Subject: [PATCH] Removed redundant spaces (#1196) --- auth/auth.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth/auth.go b/auth/auth.go index 0aabfec8..92010501 100644 --- a/auth/auth.go +++ b/auth/auth.go @@ -38,9 +38,9 @@ type Role struct { // Account provided by an auth provider type Account struct { // ID of the account (UUID or email) - Id string `json: "id"` + Id string `json:"id"` // Token used to authenticate - Token string `json: "token"` + Token string `json:"token"` // Time of Account creation Created time.Time `json:"created"` // Time of Account expiry