This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pt/members/libpt-cli/src/repl/error.rs
PlexSheep 476efb85c8
Some checks failed
cargo devel CI / cargo CI (push) Has been cancelled
refactor(cli): apply all clippy findings
2024-07-09 18:09:51 +02:00

13 lines
281 B
Rust

//! Errors for the Repl module
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[error(transparent)]
Parsing(#[from] clap::Error),
#[error(transparent)]
Input(#[from] dialoguer::Error),
#[error(transparent)]
Other(#[from] anyhow::Error),
}