about summary refs log tree commit diff
path: root/users/fcuny/exp/buckit/info.go
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/exp/buckit/info.go')
-rw-r--r--users/fcuny/exp/buckit/info.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/users/fcuny/exp/buckit/info.go b/users/fcuny/exp/buckit/info.go
new file mode 100644
index 0000000..a75add4
--- /dev/null
+++ b/users/fcuny/exp/buckit/info.go
@@ -0,0 +1,16 @@
+package main
+
+import (
+	"github.com/urfave/cli/v2"
+)
+
+var infoCmd = &cli.Command{
+	Name:      "info",
+	Usage:     "Get information about a version of a file in a namespace",
+	Action:    infoAction,
+	ArgsUsage: "<namespace> <file> <version>",
+}
+
+func infoAction(ctx *cli.Context) error {
+	return nil
+}