feat(cli): implement clap

added clap, justfile now allows passing args to run recipe
This commit is contained in:
2026-08-30 15:12:25 -05:00
parent 939defca26
commit 9bed16badc
2 changed files with 12 additions and 3 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ _default:
# Run the bot
[group('dev')]
run:
cargo run
run *args:
cargo run {{args}}
# Clean up previous builds
[group('build')]