summaryrefslogtreecommitdiff
path: root/bin/bot/src/bot_config.rs
diff options
context:
space:
mode:
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,
+}