diff options
| author | Matthieu Pignolet <matthieu@puffer.fish> | 2025-10-30 16:04:25 +0100 |
|---|---|---|
| committer | Matthieu Pignolet <matthieu@puffer.fish> | 2025-10-30 16:04:25 +0100 |
| commit | 09a0afaff012b88f79afde35a3c2ebaeb010a176 (patch) | |
| tree | 874fe676977f56c5456e4cead31e1a6c86bc40dd /bin/bot/src/bot_config.rs | |
| parent | c951f54be999fb7e508039ba23fa5b1fe7035743 (diff) | |
feat: commit allfeat/twilight-discord
Diffstat (limited to 'bin/bot/src/bot_config.rs')
| -rw-r--r-- | bin/bot/src/bot_config.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/bot/src/bot_config.rs b/bin/bot/src/bot_config.rs new file mode 100644 index 0000000..af6d714 --- /dev/null +++ b/bin/bot/src/bot_config.rs @@ -0,0 +1,10 @@ +use serde::{Serialize, Deserialize}; +use std::string::String; + +#[derive(Debug, Serialize, Deserialize)] +pub struct Config { + pub token: String, + pub model_path: String, + pub config_path: String, + pub db_path: String, +} |
