about summary refs log tree commit diff
path: root/users/fcuny/exp/buckit/list.go
blob: 1c080ab52ce00ec512a676adc72d03e214eba4de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}