BatchAnalysisReport represents the complete analysis report
| 41 | |
| 42 | // BatchAnalysisReport represents the complete analysis report |
| 43 | type BatchAnalysisReport struct { |
| 44 | BatchDirectories []string `json:"batch_directories"` |
| 45 | AnalysisDate time.Time `json:"analysis_date"` |
| 46 | Models []ModelAnalysis `json:"models"` |
| 47 | Summary string `json:"summary"` |
| 48 | } |
| 49 | |
| 50 | func main() { |
| 51 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected