mirror of
https://github.com/taigrr/arc
synced 2025-01-18 04:33:13 -08:00
25 lines
460 B
Go
25 lines
460 B
Go
package flags
|
|
|
|
import (
|
|
"reflect"
|
|
)
|
|
|
|
// Arg represents a positional argument on the command line.
|
|
type Arg struct {
|
|
// The name of the positional argument (used in the help)
|
|
Name string
|
|
|
|
// A description of the positional argument (used in the help)
|
|
Description string
|
|
|
|
// Whether a positional argument is required
|
|
Required int
|
|
|
|
value reflect.Value
|
|
tag multiTag
|
|
}
|
|
|
|
func (a *Arg) isRemaining() bool {
|
|
return a.value.Type().Kind() == reflect.Slice
|
|
}
|