summary refs log tree commit diff
path: root/lib/src/prelude.rs
blob: a4e81ebdf5a0f4641278edd2118b0168065a0532 (plain)
1
2
3
4
use crate::error::Error;

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