mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:13:51 +01:00
10 lines
198 B
Rust
10 lines
198 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[error(transparent)]
|
|
Send(#[from] crate::send::SendHttpRequestError),
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|