Compare commits

..
Author SHA1 Message Date
phoenix 9bc1743bd9 Workflow fix 2025-11-14 14:10:46 -05:00
phoenix fc5348bad7 Cleanup 2025-11-14 14:10:37 -05:00
phoenix 51d82941fa TwilioConfig 2025-11-14 14:06:46 -05:00
3 changed files with 2 additions and 16 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.8"
VERSION="0.0.7"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+1 -1
View File
@@ -6,6 +6,6 @@ import (
type Message struct {
Id uuid.UUID `json:"id"`
Content string `json:"content,omitempty"`
Content string `json:"content"`
UserId uuid.UUID `json:"user_id"`
}
-14
View File
@@ -1,14 +0,0 @@
package user
import (
"time"
"github.com/google/uuid"
)
type ServiceUser struct {
Id uuid.UUID `json:"id"`
Username string `json:"username,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
Created *time.Time `json:"date_created,omitempty"`
}