1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/pkg/utils/os/env.go

11 lines
162 B
Go
Raw Normal View History

package os
import "os"
func GetEnvWithFallback(name, fallback string) string {
if value := os.Getenv(name); value != "" {
return value
}
return fallback
}