lool/lib/lib.rs
2024-04-17 08:30:25 -03:00

19 lines
319 B
Rust

#![doc(
html_logo_url = "https://raw.githubusercontent.com/lucodear/lool/master/.github/img/logo.svg"
)]
#[cfg(feature = "cli")]
pub mod cli;
#[cfg(feature = "sched")]
pub mod sched;
#[cfg(feature = "logger")]
pub mod logger;
#[cfg(feature = "macros")]
pub mod macros;
#[cfg(feature = "utils")]
pub mod utils;