diff options
author | Grail Finder (aider) <wohilas@gmail.com> | 2025-03-21 18:30:39 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-03-21 18:30:39 +0300 |
commit | 18ad0f5f42e3bc723e7941b8e085913c9b00577c (patch) | |
tree | bddd62de8398af8576d51228ad141400933fbd46 /config/config.go | |
parent | 4c994282b07a78ef0ea9262b54cab57202ba7e05 (diff) |
feat: add Cluedo game mode with turn-based card reminders
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go index cf7685b..b48d657 100644 --- a/config/config.go +++ b/config/config.go @@ -7,6 +7,8 @@ import ( ) type Config struct { + EnableCluedo bool `toml:"EnableCluedo"` // Cluedo game mode toggle + CluedoRole2 string `toml:"CluedoRole2"` // Secondary AI role name ChatAPI string `toml:"ChatAPI"` CompletionAPI string `toml:"CompletionAPI"` CurrentAPI string |