Implemented P2P peer exchange. Refactored project structure.

This commit is contained in:
Revertron
2021-02-11 21:51:32 +01:00
parent 9e7a1b8834
commit 279b3e87c3
9 changed files with 345 additions and 118 deletions
+3
View File
@@ -2,8 +2,11 @@ pub mod network;
pub mod message;
pub mod state;
pub mod peer;
pub mod peers;
pub use network::Network;
pub use message::Message;
pub use state::State;
pub use peer::Peer;
pub use peers::Peers;