mirror of
https://github.com/aljazceru/notedeck.git
synced 2026-01-01 23:44:21 +01:00
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.
4 lines
78 B
Rust
4 lines
78 B
Rust
use crate::error::Error;
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|