StringSlice flag can be define multiple times in the arguments
| 2 | |
| 3 | // StringSlice flag can be define multiple times in the arguments |
| 4 | type StringSliceFlag struct { |
| 5 | Name string |
| 6 | Value []string |
| 7 | Usage string |
| 8 | ShortName string |
| 9 | Hidden bool |
| 10 | } |
| 11 | |
| 12 | func (f *StringSliceFlag) Set(v string) { |
| 13 | f.Value = append(f.Value, v) |
nothing calls this directly
no outgoing calls
no test coverage detected