kubo/commands/argument.go

15 lines
202 B
Go

package commands
type ArgumentType int
const (
ArgString ArgumentType = iota
ArgPath
)
type Argument struct {
Name string
Type ArgumentType
Required, Variadic bool
}