aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/buckit/main.go
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-27 19:24:57 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-27 19:24:57 -0700
commita5679641aa0eb9e872605b70c263c3e950132647 (patch)
tree7f4a9670365f8f13152d1070e5d5803f3618aa91 /users/fcuny/exp/buckit/main.go
parentfeat(ops/github): archive notes.fcuny.net (diff)
downloadinfra-a5679641aa0eb9e872605b70c263c3e950132647.tar.gz
ref(users/fcuny): and just like that ...
Diffstat (limited to '')
-rw-r--r--users/fcuny/exp/buckit/main.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/users/fcuny/exp/buckit/main.go b/users/fcuny/exp/buckit/main.go
deleted file mode 100644
index 2350264..0000000
--- a/users/fcuny/exp/buckit/main.go
+++ /dev/null
@@ -1,21 +0,0 @@
-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)
-}