aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/buckit/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/exp/buckit/main.go')
-rw-r--r--users/fcuny/exp/buckit/main.go21
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)
+}