blob: 9ac31ccea73254b615e7a7af028d3b934ae5242a (
plain) (
tree)
|
|
package main
import (
"github.com/urfave/cli/v2"
)
var fetchCmd = &cli.Command{
Name: "fetch",
Usage: "Fetch a version of a file within a namespace",
Action: fetchAction,
ArgsUsage: "<namespace> <file> <version>",
}
func fetchAction(ctx *cli.Context) error {
return nil
}
|