mpc_relay_server/
lib.rs

1//! ***Moved to `polysig-relay-server`***.
2//!
3//! Relay websocket server using the [noise](https://noiseprotocol.org/)
4//! protocol for end-to-end encryption intended for multi-party computation
5//! and threshold signature applications.
6
7#![deny(missing_docs)]
8
9mod config;
10mod error;
11mod server;
12mod service;
13mod websocket;
14
15pub use config::ServerConfig;
16pub use error::Error;
17pub use server::RelayServer;
18
19pub use axum;
20
21/// Result type for the relay service.
22pub type Result<T> = std::result::Result<T, Error>;