* feat(subcmds/report,server): read environment variables when configPath is "" * refactor: standardize db.NewDB to db.CloseDB * chore: clean up import * chore: error wrap * chore: update goval-dictionary * fix(oval): return Pseudo instead of nil for client * chore: fix comment * fix: lint error
19 lines
361 B
Go
19 lines
361 B
Go
//go:build !scanner
|
|
// +build !scanner
|
|
|
|
package gost
|
|
|
|
import (
|
|
"github.com/future-architect/vuls/models"
|
|
)
|
|
|
|
// Pseudo is Gost client except for RedHat family, Debian, Ubuntu and Windows
|
|
type Pseudo struct {
|
|
Base
|
|
}
|
|
|
|
// DetectCVEs fills cve information that has in Gost
|
|
func (pse Pseudo) DetectCVEs(_ *models.ScanResult, _ bool) (int, error) {
|
|
return 0, nil
|
|
}
|