This commit is contained in:
2026-08-22 02:59:16 +02:00
commit 6a5bb1d699
100 changed files with 17409 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package auth
import "github.com/google/uuid"
type User struct {
ID uuid.UUID `json:"id"`
Email string `json:"email"`
Name string `json:"name"`
}
type storedUser struct {
User
PasswordHash string
}