feat(auth): #154 send verification mails

This commit is contained in:
2024-09-07 22:51:50 +02:00
parent 5172a30781
commit f6aaccc1aa
13 changed files with 353 additions and 100 deletions

11
types/types.go Normal file
View File

@@ -0,0 +1,11 @@
package types
import "github.com/google/uuid"
type User struct {
Id uuid.UUID
Email string
SessionId string
EmailVerified bool
SessionValid bool
}