botserver/src/main_module/mod.rs
Rodrigo Rodriguez (Pragmatismo) 73002b36cc
All checks were successful
BotServer CI/CD / build (push) Successful in 9m59s
Update botserver: various fixes and improvements
2026-04-07 13:33:50 -03:00

16 lines
304 B
Rust

//! Main application modules split from main.rs for better organization
mod bootstrap;
mod drive_utils;
mod health;
mod server;
mod shutdown;
mod types;
pub use bootstrap::*;
#[cfg(feature = "drive")]
pub use drive_utils::*;
pub use health::*;
pub use server::*;
pub use shutdown::*;
pub use types::*;