7 lines
75 B
Rust
7 lines
75 B
Rust
|
use thiserror::Error;
|
||
|
|
||
|
#[derive (Debug, Error)]
|
||
|
pub enum ServerError {
|
||
|
|
||
|
}
|