feat: initial commit

This commit is contained in:
2025-06-13 16:55:46 +02:00
parent 1fb753469e
commit 85f0bc1024
23 changed files with 11758 additions and 45 deletions

8
internal/config/quiz.go Normal file
View File

@ -0,0 +1,8 @@
package config
import "time"
type Quiz struct {
Language string `env:"LANGUAGE" envDefault:"fr"`
PlayInterval time.Duration `env:"PLAY_INTERVAL" envDefault:"2h"`
}