1 package bootstrap 2 3 import ( 4 "edge-infra.dev/pkg/edge/compatibility" 5 ) 6 7 func SupportsFluxV024(ver string) bool { 8 supports, _ := compatibility.Compare(compatibility.LessThanOrEqual, "0.20.8", ver) 9 return supports 10 } 11
View as plain text