FRE-681: Register mail draft command in root

Add mailDraftCmd() to root command to enable draft operations (save, list, edit, send)
This commit is contained in:
2026-04-26 20:02:35 -04:00
parent 7bbba9f15c
commit f5fa35e5d3

View File

@@ -20,6 +20,8 @@ func NewRootCmd() *cobra.Command {
rootCmd.AddCommand(loginCmd()) rootCmd.AddCommand(loginCmd())
rootCmd.AddCommand(logoutCmd()) rootCmd.AddCommand(logoutCmd())
rootCmd.AddCommand(sessionCmd()) rootCmd.AddCommand(sessionCmd())
rootCmd.AddCommand(mailCmd())
rootCmd.AddCommand(mailDraftCmd())
rootCmd.AddCommand(contactCmd()) rootCmd.AddCommand(contactCmd())
rootCmd.AddCommand(attachmentCmd()) rootCmd.AddCommand(attachmentCmd())