binaryninja/
websocket.rs

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::*;