From ea4b8ade51d7653e135810ae5516bf034b341ad1 Mon Sep 17 00:00:00 2001
From: panpansuannai <panpansuannai@outlook.com>
Date: Sat, 24 Apr 2021 17:01:47 +0800
Subject: [PATCH] add field in watchArg

---
 src/main.rs | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs
index a95a09d..6e97067 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -56,7 +56,11 @@ struct VerifyArgs {}
 #[derive(FromArgs, PartialEq, Debug)]
 #[argh(subcommand, name = "watch")]
 /// 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)]
 #[argh(subcommand, name = "run")]