fix release

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

View File

@@ -7,4 +7,7 @@ pub(crate) mod anything;
pub(crate) mod nothing; 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>;