This commit is contained in:
Conrad Irwin 2023-10-26 11:48:25 +02:00
parent 693246ba26
commit 71ad3e1b20
9 changed files with 3545 additions and 0 deletions

9
crates/rpc2/src/rpc.rs Normal file
View file

@ -0,0 +1,9 @@
pub mod auth;
mod conn;
mod peer;
pub mod proto;
pub use conn::Connection;
pub use peer::*;
mod macros;
pub const PROTOCOL_VERSION: u32 = 64;