Below functions are to satisfy the flag.Value interface
(s string)
| 24 | // Below functions are to satisfy the flag.Value interface |
| 25 | |
| 26 | func (f *genericValue) Set(s string) error { |
| 27 | if f.val != nil { |
| 28 | return f.val.Set(s) |
| 29 | } |
| 30 | return nil |
| 31 | } |
| 32 | |
| 33 | func (f *genericValue) Get() any { |
| 34 | if f.val != nil { |