summaryrefslogtreecommitdiff
path: root/internal/commands/root.go
diff options
context:
space:
mode:
authorT <t@tjp.lol>2025-09-29 15:04:44 -0600
committerT <t@tjp.lol>2025-09-30 11:40:45 -0600
commit7ba68d333bc20b5795ccfd3870546a05eee60470 (patch)
tree12dc4b017803b7d01844fd42b9e3be281cbbd986 /internal/commands/root.go
parentbce8dbb58165e443902d9dae3909225ef42630c4 (diff)
Support for archiving clients and projects.HEADmain
Diffstat (limited to 'internal/commands/root.go')
-rw-r--r--internal/commands/root.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/commands/root.go b/internal/commands/root.go
index 9ac0790..6e61980 100644
--- a/internal/commands/root.go
+++ b/internal/commands/root.go
@@ -26,6 +26,8 @@ func NewRootCmd() *cobra.Command {
cmd.AddCommand(NewReportCmd())
cmd.AddCommand(NewSetCmd())
cmd.AddCommand(NewTUICmd())
+ cmd.AddCommand(NewArchiveCmd())
+ cmd.AddCommand(NewUnarchiveCmd())
return cmd
}