micw/util/cmds.go
2024-11-13 22:10:13 +01:00

21 lines
233 B
Go

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() {
}