mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 14:23:36 -06:00
5 lines
125 B
Rust
5 lines
125 B
Rust
//! Application-specific error types.
|
|
|
|
pub type Error = anyhow::Error;
|
|
pub type Result<T, E = Error> = anyhow::Result<T, E>;
|