mirror of
https://github.com/aquasecurity/trivy.git
synced 2026-01-31 13:53:14 +08:00
9 lines
289 B
Go
9 lines
289 B
Go
package binary
|
|
|
|
// Bridge to expose binary parser internals to tests in the binary_test package.
|
|
|
|
// ChooseMainVersion exports chooseMainVersion for testing.
|
|
func (p *Parser) ChooseMainVersion(version, ldflagsVersion string) string {
|
|
return p.chooseMainVersion(version, ldflagsVersion)
|
|
}
|