diff options
Diffstat (limited to 'src/config.rs')
-rw-r--r-- | src/config.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.rs b/src/config.rs index eea7991..b489271 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,10 +1,11 @@ -use crate::{bot, game, spectate}; +use crate::{bot, database, game, spectate}; use anyhow::{anyhow, Result}; use serde::Deserialize; use std::fs::read_to_string; #[derive(Deserialize)] pub struct Config { + pub database: database::Config, pub game: game::Config, pub spectate: spectate::Config, pub bot: bot::Config, |