Compare commits

..
Author SHA1 Message Date
phoenix d0ec54eb9f Updating go in workflow 2026-05-03 15:56:43 -04:00
phoenix b615219c5b Updating go version 2026-05-03 15:51:32 -04:00
2 changed files with 2 additions and 20 deletions
+2 -2
View File
@@ -18,14 +18,14 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.26.2'
go-version: '1.26.1'
- name: Create version
id: version
run: |
echo "Creating version"
VERSION="0.2.1"
VERSION="0.2.0"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
-18
View File
@@ -1,18 +0,0 @@
package user
import (
"time"
"github.com/google/uuid"
)
type UserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
UserId uuid.UUID `json:"user_id"`
}
type ServiceUserLoginHistory struct {
Id uuid.UUID `json:"id"`
LoginTime time.Time `json:"login_time"`
ServiceUserId uuid.UUID `json:"service_user_id"`
}