2024-05-09 15:59:08 -07:00
|
|
|
pub mod alloc;
|
|
|
|
pub mod config;
|
|
|
|
pub mod debug;
|
|
|
|
pub mod error;
|
|
|
|
pub mod log;
|
|
|
|
pub mod mods;
|
|
|
|
pub mod pducount;
|
|
|
|
pub mod server;
|
|
|
|
pub mod utils;
|
2024-05-27 20:05:33 +00:00
|
|
|
pub mod version;
|
2024-05-09 15:59:08 -07:00
|
|
|
|
|
|
|
pub use config::Config;
|
2024-06-14 18:29:21 +00:00
|
|
|
pub use error::{Error, RumaResponse};
|
2024-05-09 15:59:08 -07:00
|
|
|
pub use pducount::PduCount;
|
|
|
|
pub use server::Server;
|
|
|
|
|
2024-06-14 18:29:21 +00:00
|
|
|
pub type Result<T, E = Error> = std::result::Result<T, E>;
|
|
|
|
|
2024-05-19 13:02:55 +00:00
|
|
|
#[cfg(not(conduit_mods))]
|
|
|
|
pub mod mods {
|
2024-05-09 15:59:08 -07:00
|
|
|
#[macro_export]
|
|
|
|
macro_rules! mod_ctor {
|
|
|
|
() => {};
|
|
|
|
}
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! mod_dtor {
|
|
|
|
() => {};
|
|
|
|
}
|
|
|
|
}
|