From 21e91ebc7f5855b7fb85466e0b189d5be29dfff1 Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 26 May 2026 22:04:34 -0400 Subject: [PATCH] go fmt --- tx0/user/login_history.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tx0/user/login_history.go b/tx0/user/login_history.go index 65b9f8a..7f39e33 100644 --- a/tx0/user/login_history.go +++ b/tx0/user/login_history.go @@ -1,18 +1,18 @@ package user import ( - "time" "github.com/google/uuid" + "time" ) type UserLoginHistory struct { - Id uuid.UUID `json:"id"` + Id uuid.UUID `json:"id"` LoginTime time.Time `json:"login_time"` - UserId uuid.UUID `json:"user_id"` + UserId uuid.UUID `json:"user_id"` } type ServiceUserLoginHistory struct { - Id uuid.UUID `json:"id"` - LoginTime time.Time `json:"login_time"` + Id uuid.UUID `json:"id"` + LoginTime time.Time `json:"login_time"` ServiceUserId uuid.UUID `json:"service_user_id"` }