mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
9 lines
129 B
Go
9 lines
129 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
var (
|
|
// timeNow is an equivalent time.Now() that can be replaced in tests
|
|
timeNow = time.Now
|
|
)
|