11 lines
289 B
Go
11 lines
289 B
Go
|
package build
|
||
|
|
||
|
import "github.com/raulk/clock"
|
||
|
|
||
|
// Clock is the global clock for the system. In standard builds,
|
||
|
// we use a real-time clock, which maps to the `time` package.
|
||
|
//
|
||
|
// Tests that need control of time can replace this variable with
|
||
|
// clock.NewMock().
|
||
|
var Clock = clock.New()
|