From 56aeac9e21c408cebb8a9bd0080486a7a36ef2f8 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 1 Nov 2025 20:27:48 -0400 Subject: [PATCH] Adding Contact --- pkg/contact/contact.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pkg/contact/contact.go diff --git a/pkg/contact/contact.go b/pkg/contact/contact.go new file mode 100644 index 0000000..1cea684 --- /dev/null +++ b/pkg/contact/contact.go @@ -0,0 +1,6 @@ +package contact + +type Contact struct { + PhoneNumber string `json:"phone_number,omitempty"` + UserId string `json:"user_id,omitempty"` +}