gosec/report/html/writer.go

24 lines
423 B
Go
Raw Normal View History

package html
import (
2021-11-15 15:17:22 +00:00
// use go embed to import template
_ "embed"
"html/template"
"io"
2021-05-20 09:16:42 +01:00
"github.com/securego/gosec/v2"
)
2021-11-15 15:17:22 +00:00
//go:embed template.html
var templateContent string
// WriteReport write a report in html format to the output writer
2021-05-20 09:16:42 +01:00
func WriteReport(w io.Writer, data *gosec.ReportInfo) error {
t, e := template.New("gosec").Parse(templateContent)
if e != nil {
return e
}
return t.Execute(w, data)
}