This commit is contained in:
2025-03-11 21:48:05 +02:00
parent 6661fdf89b
commit 5fe09f0a2f
6 changed files with 224 additions and 7 deletions

View File

@@ -19,3 +19,11 @@ type User struct {
UpdatedAt time.Time `json:"updated_at"`
Email string `json:"email"`
}
type UserWithToken struct {
ID uuid.UUID `json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
Email string `json:"email"`
Token string `json:"token"`
}