Initial commit

This commit is contained in:
Chris Marshall
2020-08-02 13:23:17 -04:00
committed by chris
commit ffca54fdb8
60 changed files with 34080 additions and 0 deletions

14
cmd/q3/app/cmd/cmd.go Normal file
View 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
}