mirror of
https://github.com/kubescape/kubescape.git
synced 2026-04-15 06:58:11 +00:00
14 lines
215 B
Go
14 lines
215 B
Go
package getter
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
var mockFrameworkBasePath = filepath.Join("examples", "mocks", "frameworks")
|
|
|
|
func MockNewLoadPolicy() *LoadPolicy {
|
|
return &LoadPolicy{
|
|
filePaths: []string{""},
|
|
}
|
|
}
|