From be19b88a41d86fcb0818fe40feb5c254ed848811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Fri, 19 Aug 2022 14:13:53 +0200 Subject: [PATCH] Add vacation command (not implemented) --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 01860c3..d919fd2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -86,6 +86,8 @@ enum Command toggle_bad:bool, }, Stats { }, + #[structopt(alias = "vac")] + Vacation { }, } fn main()