All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 45s
19 lines
242 B
Go
19 lines
242 B
Go
package types
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
var (
|
|
InternalServerError = errors.New("Internal server error")
|
|
)
|
|
|
|
type User struct {
|
|
Id uuid.UUID
|
|
Email string
|
|
SessionId string
|
|
EmailVerified bool
|
|
}
|