aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/src/lib.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2021-02-06 19:40:53 +0100
committerKatharina Fey <kookie@spacekookie.de>2021-02-06 19:42:04 +0100
commitcf9392a33bb99ae581f818d3ddb8be1231521a02 (patch)
tree8295d8a4ed199c3263eadd8f1a508b98567a44f7 /games/rstnode/src/lib.rs
parent56d96b2f22bf6a61ff992b000215dc3a2c2448ad (diff)
rstnode: restructure project into workspace and sub-crates
Diffstat (limited to 'games/rstnode/src/lib.rs')
-rw-r--r--games/rstnode/src/lib.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/games/rstnode/src/lib.rs b/games/rstnode/src/lib.rs
deleted file mode 100644
index e063da34d8bf..000000000000
--- a/games/rstnode/src/lib.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-#![allow(warnings)]
-
-#[macro_use]
-extern crate const_env;
-
-mod _if;
-pub use _if::GameIf;
-
-pub mod data;
-pub mod gens;
-
-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;