1
2
3
4
5
// TODO: Custom Error
pub type Error = anyhow::Error;

// TODO: Custom Result
pub type Result<T> = anyhow::Result<T, Error>;