mirror of
https://github.com/owncloud/ocis
synced 2026-04-26 01:35:25 +02: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
|
|
}
|