grafana/pkg/services/live/pipeline/rule_builder.go

9 lines
210 B
Go

package pipeline
import "context"
// RuleBuilder constructs in-memory representation of channel rules.
type RuleBuilder interface {
BuildRules(ctx context.Context, orgID int64) ([]*LiveChannelRule, error)
}