1
2
3
4
5
6
7
8
9
use thiserror::Error as ThisError;

#[derive(ThisError, Debug)]
pub enum Error {
    #[error("{0}")]
    Parsing(String),
    #[error("{0}")]
    Cli(String),
}