fix release

This commit is contained in:
Jessie
2024-02-01 16:01:41 -05:00
parent a607b4267c
commit 27de6e8db8

View File

@@ -8,3 +8,6 @@ pub(crate) mod nothing;
pub use anything::*; pub use anything::*;
pub use nothing::*; pub use nothing::*;
pub type Result<T> = core::result::Result<T, Anything>;
pub type Exception<T> = core::result::Result<T, Anything>;