mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-12 16:50:10 +00:00
8 lines
119 B
Rust
8 lines
119 B
Rust
|
|
use commands::commands as cmds;
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
for command in cmds::all() {
|
||
|
|
println!("{}", command);
|
||
|
|
}
|
||
|
|
}
|