reach_websocket/lib.rs
1// SPDX-FileCopyrightText: 2025 Michael Goldenberg <m@mgoldenberg.net>
2// SPDX-License-Identifier: EUPL-1.2
3
4#[cfg(feature = "server")]
5mod channel;
6#[cfg(feature = "server")]
7pub use channel::*;
8
9#[cfg(feature = "client")]
10mod client;
11#[cfg(feature = "client")]
12pub use client::*;
13
14mod context;
15pub use context::*;
16
17mod error;
18pub use error::*;
19
20mod item;
21pub use item::*;
22
23#[cfg(feature = "server")]
24mod server;
25#[cfg(feature = "server")]
26pub use server::*;