diff options
| author | Rubens Brandao <git@rubens.io> | 2024-06-26 17:24:33 -0300 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-02-07 15:52:59 -0500 |
| commit | a039d392b54170d236d9d993024e9eca38f701ce (patch) | |
| tree | ac5900027386c9b4a1197689008c646eb59e0b80 /rust/src/websocket.rs | |
| parent | 3f0a217d7d097c0502af81e78a01ed3bf9f38761 (diff) | |
Implement Rust WebsocketProvider
Diffstat (limited to 'rust/src/websocket.rs')
| -rw-r--r-- | rust/src/websocket.rs | 10 |
1 files changed, 10 insertions, 0 deletions
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::*; |
