mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-16 12:18:59 -05:00
7 lines
176 B
Rust
7 lines
176 B
Rust
|
|
mod debug_inspect;
|
||
|
|
mod map_expect;
|
||
|
|
|
||
|
|
pub use self::{debug_inspect::DebugInspect, map_expect::MapExpect};
|
||
|
|
|
||
|
|
pub type Result<T = (), E = crate::Error> = std::result::Result<T, E>;
|