mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 02:41:50 +08:00

* Plugins: Enhanced plugin instrumentation * use backend.CallResourceResponseSenderFunc * sdk v0.237.0 * support admission control * cover all handlers in log and metrics middlewares * fix after review
8 lines
215 B
Go
8 lines
215 B
Go
package clientmiddleware
|
|
|
|
import "github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
|
|
var nopCallResourceSender = backend.CallResourceResponseSenderFunc(func(res *backend.CallResourceResponse) error {
|
|
return nil
|
|
})
|