4
0

report.go 282 B

12345678910111213141516
  1. package report
  2. import (
  3. "io"
  4. )
  5. const (
  6. // https://cwe.mitre.org/data/definitions/798.html
  7. CWE = "CWE-798"
  8. CWE_DESCRIPTION = "Use of Hard-coded Credentials"
  9. StdoutReportPath = "-"
  10. )
  11. type Reporter interface {
  12. Write(w io.WriteCloser, findings []Finding) error
  13. }