()
| 29 | type duplicateFlags []string |
| 30 | |
| 31 | func (dupes *duplicateFlags) String() string { |
| 32 | return "" |
| 33 | } |
| 34 | |
| 35 | func (dupes *duplicateFlags) Set(value string) error { |
| 36 | *dupes = append(*dupes, strings.TrimSpace(value)) |
nothing calls this directly
no outgoing calls
no test coverage detected