about summary refs log tree commit diff
path: root/users/fcuny/exp/buckit/delete.go
blob: 7bd2ab27d81f490af9489c30ff988d353ca078fe (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 package",
	Action:    deleteAction,
	ArgsUsage: "<package> <version>",
}

var undeleteCmd = &cli.Command{
	Name:      "undelete",
	Usage:     "Un-delete a version of a package",
	Action:    undeleteAction,
	ArgsUsage: "<package> <version>",
}

func deleteAction(ctx *cli.Context) error {
	return nil
}

func undeleteAction(ctx *cli.Context) error {
	return nil
}