blob: 5a0e9d1445c7c31fd7df3b474f49d8acd9beac7f (
plain) (
tree)
|
|
//! WebSocket client and protocol types for daemon-server communication.
pub mod client;
pub mod protocol;
pub use client::{ConnectionState, WsClient};
pub use protocol::{BranchInfo, DaemonCommand, DaemonMessage};
|