mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 12:35:28 +00:00
7 lines
114 B
Rust
7 lines
114 B
Rust
use {
|
|
std::{
|
|
error::Error,
|
|
},
|
|
};
|
|
|
|
pub type Result<T=()> = std::result::Result<T, Box<dyn Error>>;
|