(filePath string)
| 234 | } |
| 235 | |
| 236 | func loadFiles(filePath string) []string { |
| 237 | var fileItem []string |
| 238 | for _, item := range strings.Split(filePath, ",") { |
| 239 | if len(item) != 0 { |
| 240 | fileItem = append(fileItem, "-f", item) |
| 241 | } |
| 242 | } |
| 243 | return fileItem |
| 244 | } |
no outgoing calls
no test coverage detected