mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-06 16:06:56 +00:00
16 lines
145 B
Go
16 lines
145 B
Go
|
package data
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"io/fs"
|
||
|
)
|
||
|
|
||
|
const CrdsFolder = "crds"
|
||
|
|
||
|
//go:embed crds
|
||
|
var crdsFs embed.FS
|
||
|
|
||
|
func Crds() fs.FS {
|
||
|
return crdsFs
|
||
|
}
|