(value string)
| 16 | } |
| 17 | |
| 18 | func (s *stringList) Set(value string) error { |
| 19 | *s = strings.Split(value, ",") |
| 20 | return nil |
| 21 | } |
| 22 | |
| 23 | func main() { |
| 24 | subOne := flag.NewFlagSet("one", flag.ExitOnError) |
nothing calls this directly
no outgoing calls
no test coverage detected