summaryrefslogtreecommitdiff
path: root/internal/commands/root.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/commands/root.go')
-rw-r--r--internal/commands/root.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/commands/root.go b/internal/commands/root.go
index fda3d06..f3611ac 100644
--- a/internal/commands/root.go
+++ b/internal/commands/root.go
@@ -15,7 +15,7 @@ func NewRootCmd() *cobra.Command {
Use: "punch",
Short: "A simple time tracking CLI tool",
Long: "Punchcard helps you track your work hours and generate professional invoices and timesheets.",
- RunE: NewStatusCmd().RunE, // Default to status command when no subcommand is provided
+ RunE: NewTUICmd().RunE,
}
cmd.AddCommand(NewAddCmd())