Commit of all existing code.

This commit is contained in:
2024-12-06 11:55:31 -07:00
commit 1f7234997b
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,
}
}