1
0
mirror of https://github.com/strongdm/comply synced 2024-07-05 16:21:46 +00:00
comply/vendor/github.com/voxelbrain/goptions/special_types.go
2019-07-14 13:51:10 -03:00

15 lines
469 B
Go

package goptions
// Help Defines the common help flag. It is handled separately as it will cause
// Parse() to return ErrHelpRequest.
type Help bool
// Verbs marks the point in the struct where the verbs start. Its value will be
// the name of the selected verb.
type Verbs string
// A remainder catches all excessive arguments. If both a verb and
// the containing options struct have a remainder field, only the latter one
// will be used.
type Remainder []string