print a message when no options are given

This commit is contained in:
Ondrej Novak 2026-02-19 22:17:27 +01:00
parent 583bc8866a
commit 30a1b49d23
1 changed files with 2 additions and 0 deletions

View File

@ -23,5 +23,7 @@ fn main() {
if let Err(error) = res {
println!("Error: {}", error);
}
} else {
println!("No action specified");
}
}