2025-04-01 10:38:02 +09:00

15 lines
282 B
Go

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
}