hyperlane-plugin-websocket 14.0.7

A WebSocket plugin for the Hyperlane framework, providing robust WebSocket communication capabilities and integrating with hyperlane-broadcast for efficient message dissemination.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod websocket;

use {hyperlane_plugin_websocket::*, websocket::*};

use std::sync::OnceLock;

use {
    hyperlane::*,
    hyperlane_broadcast::*,
    tokio::{spawn, time::sleep},
};