()
| 62 | type stringSlice []string |
| 63 | |
| 64 | func (s *stringSlice) String() string { |
| 65 | return strings.Join(*s, ",") |
| 66 | } |
| 67 | |
| 68 | func (s *stringSlice) Set(value string) error { |
| 69 | *s = append(*s, value) |
nothing calls this directly
no outgoing calls
no test coverage detected