Files
banner/src/bot/commands/mod.rs
Xevion 992263205c refactor: consolidate types, remove dead code, and fix minor bugs
Replace DayOfWeek with chrono::Weekday via extension traits, unify
RateLimitConfig into the config module, and remove the unused time
command, BannerState, and ClassDetails stub. Fix open_only query
parameter to respect false values and correct 12-hour time display.
2026-01-28 16:31:11 -06:00

12 lines
169 B
Rust

//! Bot commands module.
pub mod gcal;
pub mod ics;
pub mod search;
pub mod terms;
pub use gcal::gcal;
pub use ics::ics;
pub use search::search;
pub use terms::terms;