package writer import ( "context" "time" "github.com/grafana/grafana-plugin-sdk-go/data" ) type NoopWriter struct{} func (w NoopWriter) Write(ctx context.Context, name string, t time.Time, frames data.Frames, orgID int64, extraLabels map[string]string) error { return nil }