cli/man: added info --command flag

This commit is contained in:
Hakki 2024-08-25 18:56:59 +02:00 committed by mikolaj
parent 4ad0290383
commit d0a05baeb5
1 changed files with 1 additions and 1 deletions

View File

@ -12,6 +12,6 @@ pub struct Cli {
help = "Specify the output Topola session file (*.ses), by default, it is the input filename with extension changed to .ses") help = "Specify the output Topola session file (*.ses), by default, it is the input filename with extension changed to .ses")
] ]
pub output: Option<PathBuf>, pub output: Option<PathBuf>,
#[arg(short, long, value_name = "FILE", help = "TODO")] #[arg(short, long, value_name = "COMMAND FILE", help = "JSON-like file with .cmd extension, containing sequence of available commands ")]
pub commands: Option<PathBuf>, pub commands: Option<PathBuf>,
} }