9 lines
240 B
Go
9 lines
240 B
Go
|
// Package appinsights provides an interface to submit telemetry to Application Insights.
|
||
|
// See more at https://azure.microsoft.com/en-us/services/application-insights/
|
||
|
package appinsights
|
||
|
|
||
|
const (
|
||
|
sdkName = "go"
|
||
|
Version = "0.3.1-pre"
|
||
|
)
|