Files
reminder-bot/src/commands/mod.rs
2025-10-04 18:09:31 +01:00

42 lines
721 B
Rust

#[cfg(not(test))]
pub mod allowed_dm;
#[cfg(not(test))]
mod autocomplete;
#[cfg(not(test))]
pub mod clock;
#[cfg(not(test))]
pub mod clock_context_menu;
#[cfg(not(test))]
pub mod command_macro;
pub mod dashboard;
#[cfg(not(test))]
pub mod delete;
#[cfg(not(test))]
pub mod help;
#[cfg(not(test))]
pub mod info;
#[cfg(not(test))]
pub mod look;
#[cfg(not(test))]
pub mod multiline;
#[cfg(not(test))]
pub mod nudge;
#[cfg(not(test))]
pub mod offset;
#[cfg(not(test))]
pub mod patreon;
#[cfg(not(test))]
pub mod pause;
#[cfg(not(test))]
pub mod remind;
#[cfg(not(test))]
pub mod settings;
#[cfg(not(test))]
pub mod timer;
#[cfg(not(test))]
pub mod timezone;
#[cfg(not(test))]
pub mod todo;
#[cfg(not(test))]
pub mod webhook;