Commit 679acd30 by Marcus Efraimsson Committed by GitHub

Backend Plugins: make transform work again (#22078)

parent efbe5e87
...@@ -115,12 +115,8 @@ type CorePlugin interface { ...@@ -115,12 +115,8 @@ type CorePlugin interface {
DatasourcePlugin DatasourcePlugin
} }
type TransformCallBack interface {
DataQuery(ctx context.Context, req *pluginv2.DataQueryRequest) (*pluginv2.DataQueryResponse, error)
}
type TransformPlugin interface { type TransformPlugin interface {
DataQuery(ctx context.Context, req *pluginv2.DataQueryRequest, callback TransformCallBack) (*pluginv2.DataQueryResponse, error) DataQuery(ctx context.Context, req *pluginv2.DataQueryRequest, callback plugin.TransformCallBack) (*pluginv2.DataQueryResponse, error)
} }
// LegacyClient client for communicating with a plugin using the old plugin protocol. // LegacyClient client for communicating with a plugin using the old plugin protocol.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment