error enum cleanup

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk 2024-06-14 18:29:21 +00:00
parent fbcdb3860a
commit a6edaad6fc
4 changed files with 54 additions and 67 deletions

View file

@ -10,10 +10,12 @@ pub mod utils;
pub mod version;
pub use config::Config;
pub use error::{Error, Result, RumaResponse};
pub use error::{Error, RumaResponse};
pub use pducount::PduCount;
pub use server::Server;
pub type Result<T, E = Error> = std::result::Result<T, E>;
#[cfg(not(conduit_mods))]
pub mod mods {
#[macro_export]