diff options
| -rw-r--r-- | main.go | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +package main + +import ( + "context" + "os" + + "github.com/urfave/cli/v3" +) + +func main() { + (&cli.Command{}).Run(context.Background(), os.Args) +} |
![]() |
index : task | |
| CLI-based TODO app based on BoltDB. | Brandon Irizarry |
| summaryrefslogtreecommitdiff |
| -rw-r--r-- | main.go | 12 |
@@ -0,0 +1,12 @@ +package main + +import ( + "context" + "os" + + "github.com/urfave/cli/v3" +) + +func main() { + (&cli.Command{}).Run(context.Background(), os.Args) +} |