mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-27 06:19:25 -05:00
b07b5a1149
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
12 lines
183 B
Go
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
|
|
}
|