PluralKit/crates/commands/src/main.rs

8 lines
119 B
Rust
Raw Normal View History

use commands::commands as cmds;
fn main() {
for command in cmds::all() {
println!("{}", command);
}
}