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