package cmd import ( "git.iamthefij.com/iamthefij/slog" "github.com/spf13/cobra" ) var loginCmd = &cobra.Command{ Use: "login", Short: "Login to an imap server", Long: `Login to an imap server and store configuration`, Run: func(cmd *cobra.Command, args []string) { slog.Infof("Running login cobra command!") }, }