feat: initial commit

This commit is contained in:
2025-06-15 14:46:32 +02:00
parent 85f0bc1024
commit c50d1858f2
25 changed files with 2002 additions and 55 deletions

View File

@ -19,12 +19,17 @@ type Player struct {
Name string
UserID string `gorm:"index"`
UserEmail string `gorm:"index"`
UserProvider string `gorm:"index"`
Score int
PlayedAt time.Time
SelectedEntry *uint
SelectedTurn *uint
SelectedAt time.Time
SelectedAnswer *int
}
type QuizTurn struct {