Compare commits

..
Author SHA1 Message Date
phoenix 56aeac9e21 Adding Contact 2025-11-01 20:27:48 -04:00
2 changed files with 3 additions and 8 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.0.4"
VERSION="0.0.3"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
+2 -7
View File
@@ -1,11 +1,6 @@
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"`
PhoneNumber string `json:"phone_number,omitempty"`
UserId string `json:"user_id,omitempty"`
}