Commit of all existing code.

This commit is contained in:
2024-12-06 11:53:25 -07:00
commit be3c242c54
17 changed files with 498 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
package cmd
import "github.com/urfave/cli/v2"
func intFlag(name string, value int, usage string) *cli.IntFlag {
return &cli.IntFlag{
Name: name,
Value: value,
Usage: usage,
}
}