makeshift/cmd/upload.go

14 lines
197 B
Go

package cmd
import "github.com/spf13/cobra"
var uploadCmd = &cobra.Command{
Use: "upload",
Run: func(cmd *cobra.Command, args []string) {
},
}
func init() {
rootCmd.AddCommand(uploadCmd)
}