package cmd import ( "github.com/spf13/cobra" ) var rootCmd = &cobra.Command{ Use: "Termshare", Short: "A terminal sharing application", Long: "A super fun time application to share terminals", } // Execute executes the root command. func Execute() error { return rootCmd.Execute() }