shreyas-joshi's picture
feat: Implement validation for canonical fixture and add training suite
babc153
from __future__ import annotations
from checkout import checkout
def checkout_endpoint(token: str, amount_cents: int) -> dict[str, str]:
result = checkout(token, amount_cents)
return {"status": result}