mirror of https://github.com/grafana/grafana.git
9 lines
138 B
Go
9 lines
138 B
Go
|
package annotationsimpl
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
var (
|
||
|
// timeNow is an equivalent time.Now() that can be replaced in tests
|
||
|
timeNow = time.Now
|
||
|
)
|