Initial commit of client.
This commit is contained in:
commit
cc4c95d55a
3 changed files with 41 additions and 0 deletions
17
cmd/kill.go
Normal file
17
cmd/kill.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
"fmt")
|
||||
|
||||
func init() {
|
||||
rootCmd.AddCommand(killCmd)
|
||||
}
|
||||
|
||||
var killCmd = &cobra.Command{
|
||||
Use: "kill",
|
||||
Short: "kill an Aurora Job",
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
fmt.Println("Kill job")
|
||||
},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue