mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-22 11:09:02 -05:00
7a819412c2
Signed-off-by: jkoberg <jkoberg@owncloud.com>
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
|
|
}
|