summaryrefslogtreecommitdiff
path: root/makima/src/daemon/ws/mod.rs
blob: 5a0e9d1445c7c31fd7df3b474f49d8acd9beac7f (plain) (blame)
1
2
3
4
5
6
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};