Documentation ¶
Index ¶
- func Bool(name string, value bool, usage string) *bool
- func Cheating() (bool, string)
- func Duration(name string, value time.Duration, usage string) *time.Duration
- func Float64(name string, value float64, usage string) *float64
- func Get[T any](name string) T
- func Int(name string, value int, usage string) *int
- func Parse(getSystemDefaults func() (*Config, error))
- func ResetFlagToDefault(name string) error
- func ResetToDefaults()
- func Set(name string, value interface{}) error
- func String(name string, value string, usage string) *string
- func StringMap[T any](name string, value map[string]T, usage string) *map[string]T
- func SystemDefault[T any](m map[string]T) T
- func Text[T any, PT interface{ ... }](name string, value T, usage string) PT
- type Config
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Parse ¶
Parse parses the command-line flags, then loads the config object using the provided function. Should be called initially, before loading config.
func ResetFlagToDefault ¶ added in v1.2.399
ResetFlagToDefault returns a given flag to its default value.
func ResetToDefaults ¶
func ResetToDefaults()
ResetToDefaults returns all flags to their default value.
func SystemDefault ¶ added in v1.0.59
SystemDefault performs a GOOS/GOARCH dependent value lookup to be used in flag defaults. Map keys shall be */*, GOOS/*, */GOARCH or GOOS/GOARCH.
func Text ¶ added in v1.2.399
func Text[T any, PT interface { encoding.TextMarshaler encoding.TextUnmarshaler *T }](name string, value T, usage string) PT
Text creates a flag based on a variable that fulfills TextMarshaler and TextUnmarshaler.
Types ¶
type Config ¶
type Config struct {
// contains filtered or unexported fields
}
Config is a JSON serializable type containing the flags.
func Marshal ¶
func Marshal() *Config
Marshal returns a config object for the currently set flags (both those from the config and command line). We only write non-default flag values.
func NoConfig ¶
NoConfig can be passed to Parse if the binary wants to do no config file processing.
func (*Config) MarshalJSON ¶
MarshalJSON returns the JSON representation of the config.
func (*Config) UnmarshalJSON ¶
UnmarshalJSON loads the config from a JSON object string.