mirror of
https://github.com/Xevion/banner.git
synced 2026-02-01 06:23:38 -06:00
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.
12 lines
169 B
Rust
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;
|