From a039d392b54170d236d9d993024e9eca38f701ce Mon Sep 17 00:00:00 2001 From: Rubens Brandao Date: Wed, 26 Jun 2024 17:24:33 -0300 Subject: Implement Rust WebsocketProvider --- rust/src/websocket.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rust/src/websocket.rs (limited to 'rust/src/websocket.rs') diff --git a/rust/src/websocket.rs b/rust/src/websocket.rs new file mode 100644 index 00000000..cc1b5f77 --- /dev/null +++ b/rust/src/websocket.rs @@ -0,0 +1,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::*; -- cgit v1.3.1