package types import ( "errors" "github.com/google/uuid" ) var ( ErrInternal = errors.New("Internal server error") ) type User struct { Id uuid.UUID Email string SessionId string EmailVerified bool }