5 lines
130 B
Rust
5 lines
130 B
Rust
|
#[derive(thiserror::Error, Debug)]
|
||
|
pub enum Error {
|
||
|
#[error("mandatory config `{0}` is missing")]
|
||
|
MissingConfig(String),
|
||
|
}
|