Files
notedeck/src/result.rs
William Casarin e17b73abab Profile picture processing
This is still single-threaded, so perf is pretty bad. Will need to think
about how to do this more efficiently in a web context where we don't
have threading.
2023-07-06 08:40:50 -07:00

4 lines
78 B
Rust

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