Files
QSfera/pkg/kql/engine_suite_test.go
T
2025-01-13 16:42:19 +01:00

12 lines
183 B
Go

package kql
import (
"time"
)
// PatchTimeNow is here to patch the package time now func,
// which is used in the test suite
func PatchTimeNow(t func() time.Time) {
timeNow = t
}