mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-09 17:37:12 +00:00
13 lines
246 B
Go
13 lines
246 B
Go
package policychanges
|
|
|
|
import (
|
|
"github.com/kyverno/kyverno/pkg/metrics"
|
|
)
|
|
|
|
func ParsePromMetrics(pm metrics.PromMetrics) PromMetrics {
|
|
return PromMetrics(pm)
|
|
}
|
|
|
|
func ParsePromConfig(pc metrics.PromConfig) PromConfig {
|
|
return PromConfig(pc)
|
|
}
|