blob: 1c080ab52ce00ec512a676adc72d03e214eba4de (
plain) (
tree)
|
|
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
}
|