aboutsummaryrefslogtreecommitdiff
path: root/src/net/mod.rs
diff options
context:
space:
mode:
authorArne Dußin2021-01-27 14:01:50 +0100
committerArne Dußin2021-02-02 22:16:15 +0100
commitf92e9f6f07b1e3834c2ca58ce3510734819d08e4 (patch)
tree20e3d3afce342a56ae98f6c20491482ccd2b5c6b /src/net/mod.rs
parentc60a6d07efb120724b308e29e8e70f27c87c952d (diff)
downloadgraf_karto-f92e9f6f07b1e3834c2ca58ce3510734819d08e4.tar.gz
graf_karto-f92e9f6f07b1e3834c2ca58ce3510734819d08e4.zip
Rework graf karto to fit the client/server structure
Diffstat (limited to 'src/net/mod.rs')
-rw-r--r--src/net/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/mod.rs b/src/net/mod.rs
new file mode 100644
index 0000000..eb68d1d
--- /dev/null
+++ b/src/net/mod.rs
@@ -0,0 +1,11 @@
+//! Network module containing a simple client/server library.
+
+pub mod cargo;
+pub mod client;
+pub(self) mod packet;
+pub mod server;
+
+pub use cargo::*;
+pub use client::*;
+pub(self) use packet::*;
+pub use server::*;