aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/buckit/fetch.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--users/fcuny/exp/buckit/fetch.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/users/fcuny/exp/buckit/fetch.go b/users/fcuny/exp/buckit/fetch.go
new file mode 100644
index 0000000..9ac31cc
--- /dev/null
+++ b/users/fcuny/exp/buckit/fetch.go
@@ -0,0 +1,16 @@
+package main
+
+import (
+ "github.com/urfave/cli/v2"
+)
+
+var fetchCmd = &cli.Command{
+ Name: "fetch",
+ Usage: "Fetch a version of a file within a namespace",
+ Action: fetchAction,
+ ArgsUsage: "<namespace> <file> <version>",
+}
+
+func fetchAction(ctx *cli.Context) error {
+ return nil
+}