Added user sub package

This commit is contained in:
phoenix
2025-11-01 17:00:13 -04:00
parent 9398e36269
commit 2e8ea1a054
+13
View File
@@ -0,0 +1,13 @@
package user
import (
"github.com/google/uuid"
)
type User struct {
Id uuid.UUID `json:"id"`
PhoneNumber string `json:"phone_number"`
Username string `json:"username"`
Password string `json:"password"`
}