mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
9 lines
210 B
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)
|
||
|
}
|