Skip to content

Commit dc94c52

Browse files
committed
feat(bot): implement category selection flow and commands
1 parent 5ab3d2d commit dc94c52

15 files changed

Lines changed: 1489 additions & 4 deletions

File tree

crates/rustmail/src/bot.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ pub async fn run_bot(
147147
registry.register_command(PingCommand);
148148
registry.register_command(SnippetCommand);
149149
registry.register_command(StatusCommand);
150+
registry.register_command(CategoryCommand);
150151

151152
let registry = Arc::new(registry);
152153

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pub mod slash_command;
2+
pub mod text_command;
3+
4+
pub use slash_command::*;
5+
pub use text_command::*;

0 commit comments

Comments
 (0)