Implemented P2P network protocol. Refactored project structure.

This commit is contained in:
Revertron
2021-02-05 22:24:28 +01:00
parent 562c004b0d
commit 9e7a1b8834
20 changed files with 524 additions and 101 deletions
+9
View File
@@ -0,0 +1,9 @@
pub mod network;
pub mod message;
pub mod state;
pub mod peer;
pub use network::Network;
pub use message::Message;
pub use state::State;