summaryrefslogtreecommitdiff
path: root/bin/bot/src/bot_config.rs
diff options
context:
space:
mode:
authorMatthieu Pignolet <matthieu@puffer.fish>2025-10-30 16:04:25 +0100
committerMatthieu Pignolet <matthieu@puffer.fish>2025-10-30 16:04:25 +0100
commit09a0afaff012b88f79afde35a3c2ebaeb010a176 (patch)
tree874fe676977f56c5456e4cead31e1a6c86bc40dd /bin/bot/src/bot_config.rs
parentc951f54be999fb7e508039ba23fa5b1fe7035743 (diff)
feat: commit allfeat/twilight-discord
Diffstat (limited to 'bin/bot/src/bot_config.rs')
-rw-r--r--bin/bot/src/bot_config.rs10
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,
+}