micw/util/cmds.go

21 lines
233 B
Go
Raw Normal View History

2024-11-13 21:10:13 +00:00
package util
import "flag"
type Command struct {
Run func(cmd *Command, args []string)
UsageLine string
Short string
Long string
Flag flag.FlagSet
CustomFlags bool
Command []*Command
}
func ExecCMDs() {
}