13 lines
342 B
Go
13 lines
342 B
Go
|
package application_insights
|
||
|
|
||
|
import (
|
||
|
"github.com/microsoft/ApplicationInsights-Go/appinsights"
|
||
|
)
|
||
|
|
||
|
type diagnosticsMessageSubscriber struct {
|
||
|
}
|
||
|
|
||
|
func (diagnosticsMessageSubscriber) Subscribe(handler appinsights.DiagnosticsMessageHandler) appinsights.DiagnosticsMessageListener {
|
||
|
return appinsights.NewDiagnosticsMessageListener(handler)
|
||
|
}
|