1/// Error type for server management operations. 2pub type ServerManagerError = Box<dyn std::error::Error>; 3 4/// Result type for server management operations. 5pub type ServerManagerResult = Result<(), ServerManagerError>;