//! Relay websocket server using the [noise](https://noiseprotocol.org/)
//! protocol for end-to-end encryption intended for multi-party computation
//! and threshold signature applications.
pub use ServerConfig;
pub use Error;
pub use RelayServer;
pub use axum;
/// Result type for the relay service.
pub type Result<T> = Result;