diff options
Diffstat (limited to 'makima/src/daemon/ws/mod.rs')
| -rw-r--r-- | makima/src/daemon/ws/mod.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/makima/src/daemon/ws/mod.rs b/makima/src/daemon/ws/mod.rs new file mode 100644 index 0000000..5a0e9d1 --- /dev/null +++ b/makima/src/daemon/ws/mod.rs @@ -0,0 +1,7 @@ +//! 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}; |
