commit 26d3b18e3526f7f06fbdef58c880de0088304edc
parent e073f78f27626d407ba54e3d32be9acaf8e8d9ce
Author: Marcel <MTRNord@users.noreply.github.com>
Date: Sat, 19 Feb 2022 18:37:25 +0100
Merge pull request #11 from donicrosby/example-bot-command-enum-fix
Fixes tripping hazard for the command that is generated after the proc macros
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/example-bot/src/commands/mod.rs b/example-bot/src/commands/mod.rs
@@ -6,5 +6,5 @@ pub mod hello_world;
#[command_generate(bot_name = "Example", description = "This bot prints hello!")]
enum Commands {
- HelloWorld,
+ Hello_World,
}