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

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)
}