binaryninja/
websocket.rs

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.
5
6mod client;
7mod provider;
8
9pub use client::*;
10pub use provider::*;