15 lines
325 B
Go
15 lines
325 B
Go
|
package cmd
|
||
|
|
||
|
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) {},
|
||
|
}
|
||
|
|
||
|
|
||
|
func Execute() {
|
||
|
rootCmd.Execute()
|
||
|
}
|