All checks were successful
BotServer CI/CD / build (push) Successful in 9m59s
16 lines
304 B
Rust
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::*;
|