stringSliceFlag adapts a *[]string into a flag.Value so the same flag name can be passed multiple times and accumulate. Used for repeatable `--tag` / `--remove-tag` on `flow update task`.
| 317 | // flag name can be passed multiple times and accumulate. Used for |
| 318 | // repeatable `--tag` / `--remove-tag` on `flow update task`. |
| 319 | type stringSliceFlag []string |
| 320 | |
| 321 | func (s *stringSliceFlag) String() string { |
| 322 | if s == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected