diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index 72d71eb..8344944 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -25,7 +25,7 @@ jobs: run: | echo "Creating version" - VERSION="0.0.3" + 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) diff --git a/pkg/contact/contact.go b/pkg/contact/contact.go new file mode 100644 index 0000000..e3b277d --- /dev/null +++ b/pkg/contact/contact.go @@ -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"` +}