//! Error handling. use std::result; use thiserror::Error; pub type Result = result::Result; #[derive(Error, Debug)] pub enum Error { #[error("command from client not recognized")] CommandNotFound, }