commit cec88e818d629185abc24feea08ac694553256c5
parent e073f78f27626d407ba54e3d32be9acaf8e8d9ce
Author: donicrosby <donicrosby1995@gmail.com>
Date: Wed, 17 Nov 2021 20:28:58 -0500
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,
}