package main import ( "github.com/urfave/cli/v2" ) var fetchCmd = &cli.Command{ Name: "fetch", Usage: "Fetch a version of a package", Action: fetchAction, ArgsUsage: " ", } func fetchAction(ctx *cli.Context) error { return nil }