tsk-8: Renamed pkg

This commit is contained in:
phoenix
2025-11-24 16:23:13 -05:00
parent fbaa9a48f3
commit b4359d931d
9 changed files with 0 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
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"`
}