walrus_socket/lib.rs
1//! Unix domain socket transport for the Walrus daemon.
2//!
3//! Wire message types and API traits live in `walrus-core::protocol`.
4//! This crate provides only the UDS transport layer.
5
6pub mod client;
7pub mod codec;
8pub mod server;
9
10pub use client::{ClientConfig, Connection, WalrusClient};