diff options
author | T <t@tjp.lol> | 2025-08-06 16:00:05 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-06 16:26:00 -0600 |
commit | c53e8c4e41aa88566b101431bcd104ebf7b34312 (patch) | |
tree | 614e1c911fae328cfdb1a35050bf94658d9253f8 /internal/commands | |
parent | 65e2ed65775d64afbc6065a3b4ac1069020093ca (diff) |
TUI fixes, and WIP modal dialog rendering
Diffstat (limited to 'internal/commands')
-rw-r--r-- | internal/commands/root.go | 2 |
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()) |