aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/rst-core/src/wire/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'games/rstnode/rst-core/src/wire/mod.rs')
-rw-r--r--games/rstnode/rst-core/src/wire/mod.rs11
1 files changed, 5 insertions, 6 deletions
diff --git a/games/rstnode/rst-core/src/wire/mod.rs b/games/rstnode/rst-core/src/wire/mod.rs
index 493f0bcb6885..1f15bca79028 100644
--- a/games/rstnode/rst-core/src/wire/mod.rs
+++ b/games/rstnode/rst-core/src/wire/mod.rs
@@ -1,20 +1,19 @@
//! Network formats and container messages
-mod action;
-pub use action::*;
-
mod env;
pub use env::*;
+pub mod game;
+
+mod proto;
+pub use proto::*;
+
mod resp;
pub use resp::*;
mod req;
pub use req::*;
-mod update;
-pub use update::*;
-
use crate::{data::Color, Id};
use serde::{Deserialize, Serialize};