summaryrefslogtreecommitdiff
path: root/rust/src/websocket.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/websocket.rs')
-rw-r--r--rust/src/websocket.rs10
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::*;