8 lines
134 B
Rust
Raw Normal View History

2025-12-22 09:40:46 -08:00
pub use thiserror::Error;
#[derive(Error, Debug)]
pub enum ChatError {
#[error("protocol error: {0:?}")]
Protocol(String),
}