aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs
index 678074e..eea7991 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -1,4 +1,4 @@
-use crate::{game, spectate};
+use crate::{bot, game, spectate};
use anyhow::{anyhow, Result};
use serde::Deserialize;
use std::fs::read_to_string;
@@ -7,6 +7,7 @@ use std::fs::read_to_string;
pub struct Config {
pub game: game::Config,
pub spectate: spectate::Config,
+ pub bot: bot::Config,
}
impl Config {