diff options
| author | Franck Cuny <franck@fcuny.net> | 2021-03-29 20:01:11 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-06-13 17:20:37 -0700 |
| commit | 962d03ca2893c7ca78f2beb497633190575a148a (patch) | |
| tree | 2722b795f1dfe385cf1e1ec16c5cf5839abea6bb /users/fcuny/exp/buckit/main.go | |
| parent | git: ignore the generated binary buckit (diff) | |
| download | infra-962d03ca2893c7ca78f2beb497633190575a148a.tar.gz | |
add stub commands for buckit
Add the stub commands for the binary. Each command will be in its own
file (with the exception of delete/un-delete). This will make it easier
to navigate the code.
We use `github/urfave/cli` for generating the sub commands, as the
module is well documented and easy to use.
Diffstat (limited to 'users/fcuny/exp/buckit/main.go')
| -rw-r--r-- | users/fcuny/exp/buckit/main.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/users/fcuny/exp/buckit/main.go b/users/fcuny/exp/buckit/main.go new file mode 100644 index 0000000..2350264 --- /dev/null +++ b/users/fcuny/exp/buckit/main.go @@ -0,0 +1,21 @@ +package main + +import ( + "os" + + "github.com/urfave/cli/v2" +) + +func main() { + app := cli.NewApp() + app.Name = "buckit" + app.Commands = []*cli.Command{ + addCmd, + listCmd, + fetchCmd, + infoCmd, + deleteCmd, + undeleteCmd, + } + app.Run(os.Args) +} |
