Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
64c610597a
|
||
|
|
6863af47c3
|
||
|
|
05e830a824
|
@@ -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)
|
||||
|
||||
@@ -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"`
|
||||
}
|
||||
Reference in New Issue
Block a user