reifydb_sub_server/
lib.rs

1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
3
4mod config;
5mod core;
6mod protocols;
7mod subsystem;
8
9pub use core::ProtocolServer;
10
11pub use config::{NetworkConfig, ServerConfig};
12pub use protocols::{HttpHandler, ProtocolError, ProtocolHandler, WebSocketHandler};
13pub use subsystem::{ServerSubsystem, ServerSubsystemFactory};