Compare commits

...
Author SHA1 Message Date
phoenix e832ff11a8 bump: textsender-models
Go CI / Test and Lint (push) Successful in 5s
Go Release / build-and-release (pull_request) Successful in 6s
Go CI / Test and Lint (pull_request) Successful in 5s
2026-05-26 22:06:59 -04:00
phoenix 21e91ebc7f go fmt
Go CI / Test and Lint (push) Successful in 6s
Go Release / build-and-release (pull_request) Successful in 7s
Go CI / Test and Lint (pull_request) Successful in 5s
2026-05-26 22:04:34 -04:00
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: | run: |
echo "Creating version" echo "Creating version"
VERSION="0.2.1" VERSION="0.2.2"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10) PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}" BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3) BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+5 -5
View File
@@ -1,18 +1,18 @@
package user package user
import ( import (
"time"
"github.com/google/uuid" "github.com/google/uuid"
"time"
) )
type UserLoginHistory struct { type UserLoginHistory struct {
Id uuid.UUID `json:"id"` Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"` LoginTime time.Time `json:"login_time"`
UserId uuid.UUID `json:"user_id"` UserId uuid.UUID `json:"user_id"`
} }
type ServiceUserLoginHistory struct { type ServiceUserLoginHistory struct {
Id uuid.UUID `json:"id"` Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"` LoginTime time.Time `json:"login_time"`
ServiceUserId uuid.UUID `json:"service_user_id"` ServiceUserId uuid.UUID `json:"service_user_id"`
} }