aboutsummaryrefslogblamecommitdiff
path: root/users/fcuny/exp/buckit/add.go
blob: c29476e2df05907d42587ebfd52a5afa6f86de7a (plain) (tree)
1
2
3
4
5
6
7
8
9







                                  
                                   
                             
                                          




                                        
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
}