//! This module defines types and traits for handling requests and responses in a server.
use SocketAddr;
use ServerCMD;
pub type Request = String; /// Represents a request received by the server.
pub type Response = String; /// Represents a response to be sent by the server.
/// Trait for handling incoming requests.