mirror of
https://github.com/Xevion/banner.git
synced 2025-12-08 16:06:31 -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>;
|