MCPcopy Create free account
hub / github.com/byterocket/c4udit / Report

Struct Report

analyzer/types.go:10–15  ·  view source on GitHub ↗

Report is the end result of an analysis containing the files analyzed, the issues searched for and a map of findings per issue.

Source from the content-addressed store, hash-verified

8// Report is the end result of an analysis containing the files analyzed,
9// the issues searched for and a map of findings per issue.
10type Report struct {
11 Issues []Issue
12 FilesAnalyzed []string
13 // Key is Issue Identifier
14 FindingsPerIssue map[string][]Finding
15}
16
17// Issue represents an Issue to search for in the codebase.
18// The pattern field is a RegEx string which must compile.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected