* fix (bug) : using ScanResults refs #1019 * feat(gost): WIP change priority of CVE Info in Debian * feat(report): change priority of CVE Info in Debian * refactor: move RemoveRaspbianPackFromResult * style: remove comment * fix: lint error * style: change coding style * feat(report): support reporting with gost alone * fix: merge error * refactor(debian): change code to be simple
18 lines
324 B
Go
18 lines
324 B
Go
// +build !scanner
|
|
|
|
package gost
|
|
|
|
import (
|
|
"github.com/future-architect/vuls/models"
|
|
)
|
|
|
|
// Pseudo is Gost client except for RedHat family and Debian
|
|
type Pseudo struct {
|
|
Base
|
|
}
|
|
|
|
// DetectCVEs fills cve information that has in Gost
|
|
func (pse Pseudo) DetectCVEs(r *models.ScanResult, _ bool) (int, error) {
|
|
return 0, nil
|
|
}
|