blob: 5d81c34e7235ce90048f62984fc23200300b4aff (
plain) (
tree)
|
|
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
}
|