summaryrefslogtreecommitdiffstats
path: root/src/logging/error.rs
blob: a38cdda1c86c8312a79c56d5b78a4286077fbae9 (plain)
1
2
3
4
5
6
7
8
9
10
pub type Result<T> = std::result::Result<T, Error>;

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Config(#[from] figment::error::Error),

    #[error(transparent)]
    IO(#[from] std::io::Error),
}