Compare commits

...
Author SHA1 Message Date
phoenix 64c610597a Code formatting 2025-11-29 16:20:01 -05:00
phoenix 6863af47c3 Version bump 2025-11-29 16:19:44 -05:00
phoenix 05e830a824 Added MessageEventResponse 2025-11-29 16:19:36 -05:00
2 changed files with 16 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.10"
VERSION="0.0.11"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+15
View File
@@ -0,0 +1,15 @@
package message
import (
"time"
"github.com/google/uuid"
)
type MessageEventResponse struct {
Id uuid.UUID `json:"id,omitempty"`
ScheduledMessageEventId uuid.UUID `json:"scheduled_message_event_id,omitempty"`
Response []byte `json:"response"`
UserId uuid.UUID `json:"user_id,omitempty"`
Sent time.Time `json:"sent"`
}