Documentation ¶
Overview ¶
Package flags contains enhanced versions of spf13/pflag flag routines which will read from the environment also.
Index ¶
- func BoolP(name, shorthand string, value bool, usage string) (out *bool)
- func BoolVarP(flags *pflag.FlagSet, p *bool, name, shorthand string, value bool, ...)
- func CountP(name, shorthand string, usage string) (out *int)
- func CountVarP(flags *pflag.FlagSet, p *int, name, shorthand string, usage string)
- func DurationP(name, shorthand string, value time.Duration, usage string) (out *time.Duration)
- func DurationVarP(flags *pflag.FlagSet, p *time.Duration, name, shorthand string, ...)
- func FVarP(flags *pflag.FlagSet, value pflag.Value, name, shorthand, usage string)
- func Float64P(name, shorthand string, value float64, usage string) (out *float64)
- func Float64VarP(flags *pflag.FlagSet, p *float64, name, shorthand string, value float64, ...)
- func Int64P(name, shorthand string, value int64, usage string) (out *int64)
- func Int64VarP(flags *pflag.FlagSet, p *int64, name, shorthand string, value int64, ...)
- func IntP(name, shorthand string, value int, usage string) (out *int)
- func IntVarP(flags *pflag.FlagSet, p *int, name, shorthand string, value int, usage string)
- func StringArrayP(name, shorthand string, value []string, usage string) (out *[]string)
- func StringArrayVarP(flags *pflag.FlagSet, p *[]string, name, shorthand string, value []string, ...)
- func StringP(name, shorthand string, value string, usage string) (out *string)
- func StringVarP(flags *pflag.FlagSet, p *string, name, shorthand string, value string, ...)
- func Uint32VarP(flags *pflag.FlagSet, p *uint32, name, shorthand string, value uint32, ...)
- func VarP(value pflag.Value, name, shorthand, usage string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BoolP ¶
BoolP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.BoolP
func BoolVarP ¶
BoolVarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.BoolVarP
func CountP ¶
CountP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.CountP
func CountVarP ¶
CountVarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.CountVarP
func DurationP ¶
DurationP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.DurationP
func DurationVarP ¶
func DurationVarP(flags *pflag.FlagSet, p *time.Duration, name, shorthand string, value time.Duration, usage string)
DurationVarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.DurationVarP
func FVarP ¶
FVarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.VarP
func Float64P ¶
Float64P defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.Float64P
func Float64VarP ¶
func Float64VarP(flags *pflag.FlagSet, p *float64, name, shorthand string, value float64, usage string)
Float64VarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.Float64VarP
func Int64P ¶
Int64P defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.IntP
func Int64VarP ¶ added in v1.50.0
Int64VarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.Int64VarP
func IntP ¶
IntP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.IntP
func IntVarP ¶
IntVarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.IntVarP
func StringArrayP ¶
StringArrayP defines a flag which can be overridden by an environment variable
It sets one value only - command line flags can be used to set more.
It is a thin wrapper around pflag.StringArrayP
func StringArrayVarP ¶
func StringArrayVarP(flags *pflag.FlagSet, p *[]string, name, shorthand string, value []string, usage string)
StringArrayVarP defines a flag which can be overridden by an environment variable
It sets one value only - command line flags can be used to set more.
It is a thin wrapper around pflag.StringArrayVarP
func StringP ¶
StringP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.StringP
func StringVarP ¶
func StringVarP(flags *pflag.FlagSet, p *string, name, shorthand string, value string, usage string)
StringVarP defines a flag which can be overridden by an environment variable
It is a thin wrapper around pflag.StringVarP
Types ¶
This section is empty.