Files
pgweb/Godeps/_workspace/src/github.com/jessevdk/go-flags/arg.go
Peter van Hardenberg d3f3b23a18 godeps
2014-10-30 17:35:27 -07:00

22 lines
399 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
value reflect.Value
tag multiTag
}
func (a *Arg) isRemaining() bool {
return a.value.Type().Kind() == reflect.Slice
}