mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-12-12 02:09:00 -05:00
28 lines
452 B
Rust
28 lines
452 B
Rust
|
|
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;
|
||
|
|
|
||
|
|
pub use config::Config;
|
||
|
|
pub use error::{Error, Result, RumaResponse};
|
||
|
|
pub use pducount::PduCount;
|
||
|
|
pub use server::Server;
|
||
|
|
pub use utils::conduwuit_version;
|
||
|
|
|
||
|
|
#[cfg(not(feature = "mods"))]
|
||
|
|
mod mods {
|
||
|
|
#[macro_export]
|
||
|
|
macro_rules! mod_ctor {
|
||
|
|
() => {};
|
||
|
|
}
|
||
|
|
#[macro_export]
|
||
|
|
macro_rules! mod_dtor {
|
||
|
|
() => {};
|
||
|
|
}
|
||
|
|
}
|