package cmd import ( "github.com/spf13/cobra" "git.iamthefij.com/iamthefij/imap-notes/tui" ) var tuiCmd = &cobra.Command{ Use: "gui", Short: "Load GUI for IMAP Notes", Args: cobra.NoArgs, Run: func(cmd *cobra.Command, args []string) { tui.LaunchTUI() }, }