aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/root.go
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2023-03-13 00:17:16 +0900
committernsfisis <nsfisis@gmail.com>2023-03-13 00:17:16 +0900
commit8490d6166249c31972adeb2de0f39b424eee7352 (patch)
tree1e1f096a0bef2126198ec83e69d62c619e08db7f /cmd/root.go
parentc32f49625c3be59bb10d4d471446580a19557250 (diff)
downloadterm-clock-8490d6166249c31972adeb2de0f39b424eee7352.tar.gz
term-clock-8490d6166249c31972adeb2de0f39b424eee7352.tar.zst
term-clock-8490d6166249c31972adeb2de0f39b424eee7352.zip
feat(alarm): add alarm subcommand
Diffstat (limited to 'cmd/root.go')
-rw-r--r--cmd/root.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/root.go b/cmd/root.go
index 34a12f3..3efadab 100644
--- a/cmd/root.go
+++ b/cmd/root.go
@@ -10,6 +10,7 @@ var rootCmd = &cobra.Command{
}
func init() {
+ rootCmd.AddCommand(alarmCmd)
rootCmd.AddCommand(clockCmd)
rootCmd.AddCommand(timerCmd)
}