Compare commits

...
2 Commits
Author SHA1 Message Date
phoenixandphoenix 1babde8766 Adding Contact (#1)
Reviewed-on: phoenix/textsender-models#1
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-11-03 22:22:58 +00:00
phoenix 84d04c08d8 Updated version 2025-11-01 17:00:58 -04:00
2 changed files with 12 additions and 1 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.2"
VERSION="0.0.4"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+11
View File
@@ -0,0 +1,11 @@
package contact
import (
"github.com/google/uuid"
)
type Contact struct {
Id uuid.UUID `json:"id,omitempty"`
PhoneNumber string `json:"phone_number,omitempty"`
UserId uuid.UUID `json:"user_id,omitempty"`
}