taskr/src/result.rs
2024-03-19 12:07:37 -05:00

4 lines
72 B
Rust

use anyhow::Error;
pub type Result<T> = std::result::Result<T, Error>;