add payment retries

This commit is contained in:
2026-01-15 19:33:32 -03:00
parent 6d078d178b
commit ca52384b53
7 changed files with 116 additions and 1 deletions

View File

@@ -11,8 +11,9 @@ from config import ORDER_TABLE
from exceptions import OrderNotFoundError
from .checkout import router as checkout
from .payment_retries import router as payment_retries
__all__ = ['checkout']
__all__ = ['checkout', 'payment_retries']
router = Router()
dyn = DynamoDBPersistenceLayer(ORDER_TABLE, dynamodb_client)