forked from github-mirrorer/quake-kube
Initial commit
This commit is contained in:
14
cmd/q3/app/cmd/cmd.go
Normal file
14
cmd/q3/app/cmd/cmd.go
Normal file
@ -0,0 +1,14 @@
|
||||
package cmd
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
func NewCommand() *cobra.Command {
|
||||
cmd := &cobra.Command{
|
||||
Use: "cmd",
|
||||
Short: "send remote server commands",
|
||||
RunE: func(cmd *cobra.Command, args []string) error {
|
||||
return nil
|
||||
},
|
||||
}
|
||||
return cmd
|
||||
}
|
||||
Reference in New Issue
Block a user