add field in watchArg
This commit is contained in:
parent
54804e344d
commit
ea4b8ade51
|
@ -56,7 +56,11 @@ struct VerifyArgs {}
|
||||||
#[derive(FromArgs, PartialEq, Debug)]
|
#[derive(FromArgs, PartialEq, Debug)]
|
||||||
#[argh(subcommand, name = "watch")]
|
#[argh(subcommand, name = "watch")]
|
||||||
/// Reruns `verify` when files were edited
|
/// Reruns `verify` when files were edited
|
||||||
struct WatchArgs {}
|
struct WatchArgs {
|
||||||
|
#[argh(positional)]
|
||||||
|
/// the name of the exercise at which start to watch
|
||||||
|
name: String
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(FromArgs, PartialEq, Debug)]
|
#[derive(FromArgs, PartialEq, Debug)]
|
||||||
#[argh(subcommand, name = "run")]
|
#[argh(subcommand, name = "run")]
|
||||||
|
|
Loading…
Reference in a new issue