aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/buckit/add.go
blob: 32f587043e24bd65386c3afddc456c5fbb685f93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}