File size: 342 Bytes
aec2fdf
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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)