diff options
author | metamuffin <metamuffin@disroot.org> | 2024-06-04 19:37:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-06-04 19:37:46 +0200 |
commit | 473dc29e540cb1ed332b6f2895f6f6efe2d60e65 (patch) | |
tree | ccd869dab5adece9f9f6a7190ee56fe5ad1c7b3d /src/config.rs | |
parent | f39f9840a8d14f35de0d38c9570ae27bacb20119 (diff) | |
download | gpn-tron-rust-473dc29e540cb1ed332b6f2895f6f6efe2d60e65.tar gpn-tron-rust-473dc29e540cb1ed332b6f2895f6f6efe2d60e65.tar.bz2 gpn-tron-rust-473dc29e540cb1ed332b6f2895f6f6efe2d60e65.tar.zst |
spectator see names
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 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 { |