1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-07 08:26:53 +00:00
kyverno/pkg/metrics/kyverno_info.go

13 lines
218 B
Go
Raw Normal View History

package metrics
import "github.com/kyverno/kyverno/pkg/version"
type KyvernoInfoStruct struct {
Version string
}
func GetKyvernoInfo() KyvernoInfoStruct {
ver := version.Version()
return KyvernoInfoStruct{ver}
}