summaryrefslogtreecommitdiff
path: root/internal/cli/root.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-03 23:07:25 +0200
committerPaul Buetow <paul@buetow.org>2026-03-03 23:07:25 +0200
commit28920ad225992386069d8513d0cf097dd50daeef (patch)
treea389450ac6a939ac99f3eb55de865fb24991eede /internal/cli/root.go
parent93783dc090cb5f5452e893b55a9f50f500f1e8a3 (diff)
Task 352: add tui cobra command
Diffstat (limited to 'internal/cli/root.go')
-rw-r--r--internal/cli/root.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cli/root.go b/internal/cli/root.go
index f2512b5..11dabc5 100644
--- a/internal/cli/root.go
+++ b/internal/cli/root.go
@@ -51,6 +51,7 @@ func NewRootCmd() *cobra.Command {
cmd.PersistentFlags().StringVar(&configPath, "config", "", "Path to config file")
cmd.AddCommand(newTimerCmd())
cmd.AddCommand(newWorkCmd())
+ cmd.AddCommand(newTUICmd())
return cmd
}