19 lines
		
	
	
		
			344 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			344 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build !scanner
 | 
						|
// +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
 | 
						|
}
 |