mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-07-28 18:58:30 +00: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 {
|
||
|
() => {};
|
||
|
}
|
||
|
}
|