diff -r a077aac9df01 -r 98ef2913ec73 rust/hedgewars-server/src/server.rs --- a/rust/hedgewars-server/src/server.rs Sun Dec 16 00:09:20 2018 +0100 +++ b/rust/hedgewars-server/src/server.rs Sun Dec 16 00:12:29 2018 +0100 @@ -1,10 +1,10 @@ -pub mod core; +mod actions; pub mod client; -pub mod io; -pub mod room; -pub mod network; +pub mod core; pub mod coretypes; -mod actions; -mod handlers; #[cfg(feature = "official-server")] mod database; +mod handlers; +pub mod io; +pub mod network; +pub mod room;