1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-07-13 01:20:35 +02:00
Files
ferret/pkg/drivers/cdp/templates/helpers.go

14 lines
208 B
Go
Raw Normal View History

package templates
import (
"github.com/MontFerret/ferret/pkg/drivers"
)
func WaitEventToEqOperator(when drivers.WaitEvent) string {
if when == drivers.WaitEventPresence {
return "=="
}
return "!="
}