github.com/wolfi-dev/wolfictl@v0.16.11/pkg/vuln/event.go (about)

     1  package vuln
     2  
     3  type EventPackageMatchingStarting struct {
     4  	Package string
     5  }
     6  
     7  type EventPackageMatchingFinished struct {
     8  	Package string
     9  	Matches []Match
    10  }
    11  
    12  type EventPackageMatchingError struct {
    13  	Package string
    14  	Err     error
    15  }
    16  
    17  type EventMatchingFinished struct {
    18  }