tsk-8: Renamed pkg (#9)

Closes #8

Reviewed-on: phoenix/textsender-models#9
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
phoenix
2025-11-27 00:55:20 +00:00
committed by phoenix
parent fbaa9a48f3
commit 14ddd3bc9c
11 changed files with 4 additions and 4 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"`
}