Add botrulez

This commit is contained in:
Joscha 2023-01-24 15:44:08 +01:00
parent 5655fa7c4a
commit a0d55482cc
7 changed files with 266 additions and 1 deletions

10
src/bot/botrulez.rs Normal file
View file

@ -0,0 +1,10 @@
//! The main [botrulez](https://github.com/jedevc/botrulez) commands.
mod full_help;
mod ping;
mod short_help;
mod uptime;
pub use self::full_help::{FullHelp, HasDescriptions};
pub use self::ping::Ping;
pub use self::short_help::ShortHelp;
pub use self::uptime::{format_duration, format_time, HasStartTime, Uptime};