| from __future__ import annotations | |
| from app.composer import compose as _compose | |
| def compose(category: dict, merchant: dict, trigger: dict, customer: dict | None = None) -> dict: | |
| """Offline challenge contract: deterministic compose(category, merchant, trigger, customer?).""" | |
| return _compose(category, merchant, trigger, customer) | |