GetEnvVars returns the env vars for this flag
()
| 263 | |
| 264 | // GetEnvVars returns the env vars for this flag |
| 265 | func (f *FlagBase[T, C, V]) GetEnvVars() []string { |
| 266 | return f.Sources.EnvKeys() |
| 267 | } |
| 268 | |
| 269 | // TakesValue returns true if the flag takes a value, otherwise false |
| 270 | func (f *FlagBase[T, C, V]) TakesValue() bool { |