zed/crates/rpc/src/rpc.rs

13 lines
187 B
Rust
Raw Normal View History

pub mod auth;
mod conn;
mod notification;
mod peer;
pub mod proto;
pub use conn::Connection;
pub use notification::*;
2023-10-12 00:39:15 +00:00
pub use peer::*;
mod macros;
pub const PROTOCOL_VERSION: u32 = 66;