mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-06-11 00:52:46 +02:00
52732e12ec
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com
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>;
|