summaryrefslogtreecommitdiff
path: root/rust/src/websocket.rs
blob: 4acf10a6b553106598eddb7ab1aabbf4cc34a223 (plain)
1
2
3
4
5
6
7
8
9
10
//! Interface for registering new websocket providers
//!
//! WARNING: Do _not_ use this for anything other than provider registration. If you need to open a
//! websocket connection, use a real websocket library.

mod client;
mod provider;

pub use client::*;
pub use provider::*;