summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/integrii/flaggy/positionalValue.go
blob: bf649a9d9e07704290cb0758b68702b167a18f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package flaggy

// PositionalValue represents a value which is determined by its position
// relative to where a subcommand was detected.
type PositionalValue struct {
	Name          string // used in documentation only
	Description   string
	AssignmentVar *string // the var that will get this variable
	Position      int     // the position, not including switches, of this variable
	Required      bool    // this subcommand must always be specified
	Found         bool    // was this positional found during parsing?
	Hidden        bool    // indicates this positional value should be hidden from help
	defaultValue  string  // used for help output
}