traefik/vendor/github.com/Microsoft/ApplicationInsights-Go/appinsights/clock.go
2018-07-11 09:08:03 +02:00

11 lines
208 B
Go

package appinsights
// We need to mock out the clock for tests; we'll use this to do it.
import "code.cloudfoundry.org/clock"
var currentClock clock.Clock
func init() {
currentClock = clock.NewClock()
}