celerix_store/server/
mod.rs

1/// TCP server implementation for the Celerix Store daemon.
2/// 
3/// This module provides the [`Router`] which handles incoming TCP connections
4/// and dispatches commands to the underlying store.
5pub mod router;
6
7pub use router::Router;