grafana/pkg/services/ngalert/writer/noop.go
Alexander Weaver 72ecde5045
Alerting: Make orgID a direct arg of writer interface (#91422)
make orgID a direct arg of writer interface
2024-08-02 09:37:28 -05: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
}