Initialize rule engine.
(self)
| 28 | """Evaluates rules against hook input data.""" |
| 29 | |
| 30 | def __init__(self): |
| 31 | """Initialize rule engine.""" |
| 32 | # No need for instance cache anymore - using global lru_cache |
| 33 | pass |
| 34 | |
| 35 | def evaluate_rules(self, rules: List[Rule], input_data: Dict[str, Any]) -> Dict[str, Any]: |
| 36 | """Evaluate all rules and return combined results. |
nothing calls this directly
no outgoing calls
no test coverage detected