about summary refs log tree commit diff
path: root/users/fcuny/exp/buckit/delete.go
blob: 6e504a989d50b9b9d75f6cda13effdd0a92f8a82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
}