diff options
Diffstat (limited to 'src/spectate/mod.rs')
-rw-r--r-- | src/spectate/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/spectate/mod.rs b/src/spectate/mod.rs new file mode 100644 index 0000000..f80551e --- /dev/null +++ b/src/spectate/mod.rs @@ -0,0 +1,9 @@ +use serde::Deserialize; +use std::net::SocketAddr; + +pub mod server; + +#[derive(Deserialize)] +pub struct Config { + bind: SocketAddr, +} |