renommage lassistanoque

This commit is contained in:
2026-08-07 00:03:15 +02:00
commit 5810c4c94f
73 changed files with 2601 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package domain
import "database/sql"
type Settings struct {
ChatModelID sql.NullString `db:"chat_model_id"`
DefaultLang string `db:"default_lang"`
RegisterEnabled bool `db:"register_enabled"`
PasswordEnabled bool `db:"password_enabled"`
VersionId string `db:"_version"`
}
type SettingsRepository interface {
GetSettings() (*Settings, error)
UpdateSettings(config *Settings) (*Settings, error)
}