girp 0.0.1

Preview GitHub Markdown files locally
Documentation
1
2
3
4
5
6
7
8
9
use miette::Diagnostic;
use thiserror::Error;

/// all possible errors returned by the app.
#[derive(Debug, Error, Diagnostic)]
pub enum Error {
    #[error("{0}")]
    Internal(String),
}