blob: 6e504a989d50b9b9d75f6cda13effdd0a92f8a82 (
plain) (
tree)
|
|
package main
import (
"github.com/urfave/cli/v2"
)
var deleteCmd = &cli.Command{
Name: "delete",
Usage: "Delete a version of a file within a namespace",
Action: deleteAction,
ArgsUsage: "<namespace> <file> <version>",
}
var undeleteCmd = &cli.Command{
Name: "undelete",
Usage: "Un-delete a version of a file within a namespace",
Action: undeleteAction,
ArgsUsage: "<namespace> <file> <version>",
}
func deleteAction(ctx *cli.Context) error {
return nil
}
func undeleteAction(ctx *cli.Context) error {
return nil
}
|