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: " ", } var undeleteCmd = &cli.Command{ Name: "undelete", Usage: "Un-delete a version of a file within a namespace", Action: undeleteAction, ArgsUsage: " ", } func deleteAction(ctx *cli.Context) error { return nil } func undeleteAction(ctx *cli.Context) error { return nil }