mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-01 18:48:24 -05:00
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
|
|
}
|