mirror of
https://github.com/securego/gosec.git
synced 2025-03-19 21:08:30 +02:00
13 lines
232 B
Go
13 lines
232 B
Go
|
package formatter
|
||
|
|
||
|
import (
|
||
|
"github.com/securego/gosec/v2"
|
||
|
)
|
||
|
|
||
|
//ReportInfo this is report information
|
||
|
type ReportInfo struct {
|
||
|
Errors map[string][]gosec.Error `json:"Golang errors"`
|
||
|
Issues []*gosec.Issue
|
||
|
Stats *gosec.Metrics
|
||
|
}
|