blob: cc1b5f77408be1ed36d341bbfab806eaa17c85e6 (
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::*;
|