mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-06 06:37:36 +03:00
Update deps
This commit is contained in:
parent
f033bb3034
commit
5a091c6da4
1997 changed files with 368830 additions and 2045 deletions
24
vendor/github.com/securego/gosec/v2/report.go
generated
vendored
Normal file
24
vendor/github.com/securego/gosec/v2/report.go
generated
vendored
Normal file
|
@ -0,0 +1,24 @@
|
|||
package gosec
|
||||
|
||||
// ReportInfo this is report information
|
||||
type ReportInfo struct {
|
||||
Errors map[string][]Error `json:"Golang errors"`
|
||||
Issues []*Issue
|
||||
Stats *Metrics
|
||||
GosecVersion string
|
||||
}
|
||||
|
||||
// NewReportInfo instantiate a ReportInfo
|
||||
func NewReportInfo(issues []*Issue, metrics *Metrics, errors map[string][]Error) *ReportInfo {
|
||||
return &ReportInfo{
|
||||
Errors: errors,
|
||||
Issues: issues,
|
||||
Stats: metrics,
|
||||
}
|
||||
}
|
||||
|
||||
// WithVersion defines the version of gosec used to generate the report
|
||||
func (r *ReportInfo) WithVersion(version string) *ReportInfo {
|
||||
r.GosecVersion = version
|
||||
return r
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue