15 lines
215 B
Go
15 lines
215 B
Go
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
|
|
}
|