zed/crates/rpc/src/rpc.rs

10 lines
143 B
Rust
Raw Normal View History

pub mod auth;
mod conn;
mod peer;
pub mod proto;
pub use conn::Connection;
pub use peer::*;
mod macros;
2023-05-31 16:03:45 +00:00
pub const PROTOCOL_VERSION: u32 = 57;