2017-12-02 15:08:43 -08:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
|
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Use: "ionbeam",
|
|
|
|
Short: "ionbeam is a client for Apache Aurora",
|
2017-12-02 15:53:29 -08:00
|
|
|
Long: `A light-weight, intuitive command line client for use with Apache Aurora.`,
|
|
|
|
}
|
2017-12-02 15:08:43 -08:00
|
|
|
|
2017-12-02 15:53:29 -08:00
|
|
|
func Execute() {
|
2017-12-02 15:08:43 -08:00
|
|
|
rootCmd.Execute()
|
2017-12-02 15:53:29 -08:00
|
|
|
}
|