mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
13 lines
218 B
Go
13 lines
218 B
Go
|
package metrics
|
||
|
|
||
|
import "github.com/kyverno/kyverno/pkg/version"
|
||
|
|
||
|
type KyvernoInfoStruct struct {
|
||
|
Version string
|
||
|
}
|
||
|
|
||
|
func GetKyvernoInfo() KyvernoInfoStruct {
|
||
|
ver := version.Version()
|
||
|
return KyvernoInfoStruct{ver}
|
||
|
}
|