refactor(commands): remove general From array impl for tokens because it doesnt make sense

This commit is contained in:
dusk 2025-01-21 00:39:25 +09:00
parent c6db96115e
commit 2a66e8b4cf
No known key found for this signature in database
3 changed files with 12 additions and 20 deletions

View file

@ -16,7 +16,7 @@ fn main() {
}
} else {
for command in cmds::all() {
println!("{}", command);
println!("{} - {}", command, command.help);
}
}
}