1
2
3
4
5
6
pub enum ServerError {
    Tungstenite(tungstenite::error::Error),
    Io(std::io::Error),
}

pub type ServerResult = Result<(), ServerError>;