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