mirror of
https://github.com/aquasecurity/trivy.git
synced 2025-12-21 06:43:05 -08:00
12 lines
206 B
Go
12 lines
206 B
Go
package testutil
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"github.com/samber/lo"
|
|
)
|
|
|
|
var ErrNotExist string = lo.Ternary(runtime.GOOS == "windows",
|
|
"The system cannot find the file specified.",
|
|
"no such file or directory")
|