lotus/build/clock.go
2020-07-10 15:51:45 +01:00

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()