mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-23 11:05:01 +01:00
10 lines
187 B
Rust
10 lines
187 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
ReqwestError(#[from] reqwest::Error),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|