Changed type of Contact.UserId

This commit is contained in:
phoenix
2025-11-01 20:31:54 -04:00
parent f916a552f6
commit 27b9f1df4d
+6 -2
View File
@@ -1,6 +1,10 @@
package contact
import (
"github.com/google/uuid"
)
type Contact struct {
PhoneNumber string `json:"phone_number,omitempty"`
UserId string `json:"user_id,omitempty"`
PhoneNumber string `json:"phone_number,omitempty"`
UserId uuid.UUID `json:"user_id,omitempty"`
}