about summary refs log tree commit diff
path: root/users/fcuny/exp/buckit/list.go
blob: 5d81c34e7235ce90048f62984fc23200300b4aff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

import (
	"github.com/urfave/cli/v2"
)

var listCmd = &cli.Command{
	Name:      "list",
	Usage:     "List namespaces or files within a namespace",
	Action:    listAction,
	ArgsUsage: "[namespace]",
}

func listAction(ctx *cli.Context) error {
	return nil
}