| 281 | } |
| 282 | |
| 283 | type processor struct { |
| 284 | seReport *report.SensorReport |
| 285 | artifactsDirName string |
| 286 | // Extra files to put into the artifacts archive before exiting. |
| 287 | artifactsExtra []string |
| 288 | origPathMap map[string]struct{} |
| 289 | } |
| 290 | |
| 291 | func NewProcessor(seReport *report.SensorReport, artifactsDirName string, artifactsExtra []string) Processor { |
| 292 | return &processor{ |
nothing calls this directly
no outgoing calls
no test coverage detected