1//! Interface for registering new websocket providers
2//!
3//! WARNING: Do _not_ use this for anything other than provider registration. If you need to open a
4//! websocket connection, use a real websocket library.
56mod client;
7mod provider;
89pub use client::*;
10pub use provider::*;