about summary refs log tree commit diff
path: root/users/fcuny/exp/buckit/list.go
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/exp/buckit/list.go')
-rw-r--r--users/fcuny/exp/buckit/list.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/users/fcuny/exp/buckit/list.go b/users/fcuny/exp/buckit/list.go
new file mode 100644
index 0000000..5d81c34
--- /dev/null
+++ b/users/fcuny/exp/buckit/list.go
@@ -0,0 +1,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
+}