mirror of
https://github.com/anchore/syft.git
synced 2026-02-12 10:36:45 +01:00
19 lines
631 B
Go
19 lines
631 B
Go
package binary
|
|
|
|
import "github.com/anchore/syft/syft/pkg/cataloger/internal/binutils"
|
|
|
|
// Note: all generic utilities for catalogers have been moved to the internal/binutils package.
|
|
|
|
// Deprecated: This package is deprecated and will be removed in syft v2
|
|
type Classifier = binutils.Classifier
|
|
|
|
// Deprecated: This package is deprecated and will be removed in syft v2
|
|
type EvidenceMatcher = binutils.EvidenceMatcher
|
|
|
|
// Deprecated: This package is deprecated and will be removed in syft v2
|
|
func FileContentsVersionMatcher(
|
|
pattern string,
|
|
) EvidenceMatcher {
|
|
return binutils.FileContentsVersionMatcher(catalogerName, pattern)
|
|
}
|