oxur_repl/server/mod.rs
1//! Server Layer for REPL
2//!
3//! Provides session management, message handling, and server infrastructure.
4//! Based on ODD-0018: Oxur Remote REPL Protocol Design.
5
6mod handler;
7mod repl_server;
8mod session;
9
10// Re-export public types
11pub use handler::MessageHandler;
12pub use repl_server::{ReplServer, ShutdownHandle};
13pub use session::{SessionError, SessionInfo, SessionManager};