diff --git a/cmd/root.go b/cmd/root.go index 5a08a20..a1f295d 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -5,11 +5,9 @@ import "github.com/spf13/cobra" var rootCmd = &cobra.Command{ Use: "ionbeam", Short: "ionbeam is a client for Apache Aurora", - Long: `A light-weight, intuitive command line client for use with Apache Aurora.`, - Run: func(cmd *cobra.Command, args []string) {}, - } + Long: `A light-weight, intuitive command line client for use with Apache Aurora.`, +} - - func Execute() { +func Execute() { rootCmd.Execute() - } \ No newline at end of file +}