From f5fa35e5d3034cbdf29083680ecd54e663cebdea Mon Sep 17 00:00:00 2001 From: Michael Freno Date: Sun, 26 Apr 2026 20:02:35 -0400 Subject: [PATCH] FRE-681: Register mail draft command in root Add mailDraftCmd() to root command to enable draft operations (save, list, edit, send) --- cmd/root.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/root.go b/cmd/root.go index 0b04265..f629770 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -20,6 +20,8 @@ func NewRootCmd() *cobra.Command { rootCmd.AddCommand(loginCmd()) rootCmd.AddCommand(logoutCmd()) rootCmd.AddCommand(sessionCmd()) + rootCmd.AddCommand(mailCmd()) + rootCmd.AddCommand(mailDraftCmd()) rootCmd.AddCommand(contactCmd()) rootCmd.AddCommand(attachmentCmd())