2018-05-16 07:05:59 +08:00
|
|
|
package application_insights
|
|
|
|
|
|
|
|
|
|
import (
|
2021-04-28 06:01:45 +08:00
|
|
|
"github.com/microsoft/ApplicationInsights-Go/appinsights"
|
2018-05-16 07:05:59 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type diagnosticsMessageSubscriber struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ms diagnosticsMessageSubscriber) Subscribe(handler appinsights.DiagnosticsMessageHandler) appinsights.DiagnosticsMessageListener {
|
|
|
|
|
return appinsights.NewDiagnosticsMessageListener(handler)
|
|
|
|
|
}
|