Create init method on provider interface
This commit is contained in:
parent
b2a57ca1f3
commit
027093a5a5
52 changed files with 2760 additions and 131 deletions
11
vendor/github.com/Microsoft/ApplicationInsights-Go/appinsights/clock.go
generated
vendored
Normal file
11
vendor/github.com/Microsoft/ApplicationInsights-Go/appinsights/clock.go
generated
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
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()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue