aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'games/rstnode/src/lib.rs')
-rw-r--r--games/rstnode/src/lib.rs25
1 files changed, 14 insertions, 11 deletions
diff --git a/games/rstnode/src/lib.rs b/games/rstnode/src/lib.rs
index 94117ddbcffc..e063da34d8bf 100644
--- a/games/rstnode/src/lib.rs
+++ b/games/rstnode/src/lib.rs
@@ -1,21 +1,24 @@
#![allow(warnings)]
+#[macro_use]
+extern crate const_env;
+
mod _if;
pub use _if::GameIf;
pub mod data;
pub mod gens;
-mod _loop;
-mod _match;
-mod config;
-mod io;
-mod lobby;
-mod map;
-mod mapstore;
-mod server;
-mod stats;
-mod users;
-mod wire;
+pub mod _loop;
+pub mod _match;
+pub mod config;
+pub mod io;
+pub mod lobby;
+pub mod map;
+pub mod mapstore;
+pub mod server;
+pub mod stats;
+pub mod users;
+pub mod wire;
pub use identity::Identity as Id;