rust/hedgewars-server/src/server.rs
changeset 14457 98ef2913ec73
parent 14456 a077aac9df01
child 14692 e5415faa117b
--- 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;