| 1 | package flags |
| 2 | |
| 3 | type StringFlag struct { |
| 4 | Name string |
| 5 | Value string |
| 6 | Usage string |
| 7 | ShortName string |
| 8 | Hidden bool |
| 9 | } |
| 10 | |
| 11 | func (f *StringFlag) Set(v string) { |
| 12 | f.Value = v |
nothing calls this directly
no outgoing calls
no test coverage detected