feat: add filename extension and verbose flag

This commit is contained in:
2026-02-19 13:43:07 +01:00
parent 1026868e01
commit 80e2d868d2
7 changed files with 50 additions and 25 deletions

View File

@@ -56,6 +56,14 @@ func main() {
},
},
},
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "verbose",
Aliases: []string{"v"},
Usage: "verbose output",
Destination: &app.Verbose,
},
},
}
if err := cmd.Run(context.Background(), os.Args); err != nil {
log.Fatal(err)