Skip to main content

rings_node/extension/protocols/
mod.rs

1//! Built-in protocol extensions.
2//!
3//! Each built-in is a `(Protocol, Interpret)` pair registered under its namespace. The
4//! relay's pure model is one generic [`relay::Relay`]; only its interpreter differs by
5//! platform (`NativeRelay` / `WtRelay`).
6
7pub mod echo;
8#[cfg(rings_browser)]
9pub mod js;
10pub mod relay;