traefik/vendor/github.com/Microsoft/ApplicationInsights-Go/appinsights/clock.go

12 lines
208 B
Go
Raw Normal View History

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