This commit is contained in:
2026-01-12 22:36:34 -03:00
parent 6fb00c24c1
commit 29b8305713
15 changed files with 327 additions and 138 deletions

View File

@@ -19,9 +19,9 @@ app = APIGatewayHttpResolver(enable_validation=True)
dyn = DynamoDBPersistenceLayer(ORDER_TABLE, dynamodb_client)
@app.post('/')
@app.post('/postback/<order_id>')
@tracer.capture_method
def postback():
def postback(order_id: str):
return Response(status_code=HTTPStatus.NO_CONTENT)