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

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