Skip to main content

walrus_socket/
lib.rs

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.
5
6pub mod client;
7pub mod server;
8
9pub use client::{ClientConfig, Connection, WalrusClient};