Return whether command handled message

This commit is contained in:
Joscha 2023-02-27 12:41:49 +01:00
parent a6331d50b8
commit 4479126500
12 changed files with 142 additions and 47 deletions

View file

@ -15,6 +15,13 @@ Procedure when bumping the version number:
### Added
- `bot::botrulez::Uptime` now implements `bot::command::Command`
- `bot::commands::Commands::fallthrough`
- `bot::commands::Commands::set_fallthrough`
### Changed
- `bot::command::ClapCommand::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>`
- `bot::command::Command::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>`
- `bot::commands::Commands::handle_packet` now returns a `Result<bool, E>` instead of a `Result<(), E>`
## v0.3.1 - 2023-02-26