taskr/src/result.rs

4 lines
72 B
Rust
Raw Normal View History

2024-03-19 12:07:37 -05:00
use anyhow::Error;
pub type Result<T> = std::result::Result<T, Error>;