diff -r 7732013ce64c -r c5a6e8566425 rust/hedgewars-server/src/main.rs --- a/rust/hedgewars-server/src/main.rs Tue May 28 17:49:04 2019 +0200 +++ b/rust/hedgewars-server/src/main.rs Tue May 28 19:04:18 2019 +0300 @@ -6,7 +6,9 @@ use mio::{net::*, *}; use std::{env, str::FromStr as _, time::Duration}; +mod core; mod protocol; +mod handlers; mod server; mod utils;