Initial commit of client.
This commit is contained in:
commit
cc4c95d55a
3 changed files with 41 additions and 0 deletions
15
cmd/root.go
Normal file
15
cmd/root.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
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()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue