feat(commands): implement Display traits for Token and Command to have some basic 'doc gen', split Toggle into Enable and Disable

This commit is contained in:
dusk 2025-01-08 18:31:59 +09:00
parent 482c923507
commit 4f7e9c22a1
No known key found for this signature in database
9 changed files with 187 additions and 56 deletions

View file

@ -0,0 +1,7 @@
use commands::commands as cmds;
fn main() {
for command in cmds::all() {
println!("{}", command);
}
}