diff options
| -rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8,5 +8,6 @@ import ( ) func main() { - (&cli.Command{}).Run(context.Background(), os.Args) + cmd := new(cli.Command) + cmd.Run(context.Background(), os.Args) } |
![]() |
index : task | |
| CLI-based TODO app based on BoltDB. | Brandon Irizarry |
| summaryrefslogtreecommitdiff |
| -rw-r--r-- | main.go | 3 |
@@ -8,5 +8,6 @@ import ( ) func main() { - (&cli.Command{}).Run(context.Background(), os.Args) + cmd := new(cli.Command) + cmd.Run(context.Background(), os.Args) } |