package main import ( "github.com/urfave/cli/v2" ) var listCmd = &cli.Command{ Name: "list", Usage: "List packages", Action: listAction, } func listAction(ctx *cli.Context) error { return nil }