Compare commits

..

1 Commits

Author SHA1 Message Date
2a25d947c3 Fixes in User Entity field names 2025-10-21 12:09:26 +02:00

View File

@@ -3,7 +3,7 @@ package identity
import "time" import "time"
type User struct { type User struct {
ID string `db:"id" json:"id"` ID int `db:"id" json:"id"`
Email string `db:"email" json:"email"` Email string `db:"email" json:"email"`
Username string `db:"username" json:"username"` Username string `db:"username" json:"username"`
Password string `db:"password" json:"password"` Password string `db:"password" json:"password"`