fix slots

This commit is contained in:
2025-07-17 21:30:27 -03:00
parent 31a8025125
commit 6eafb0f541
8 changed files with 166 additions and 59 deletions

View File

@@ -24,11 +24,6 @@ logger = Logger(__name__)
enrollment_layer = DynamoDBPersistenceLayer(ENROLLMENT_TABLE, dynamodb_client)
class DeduplicationConflictError(Exception):
def __init__(self, *args):
super().__init__('Enrollment already exists')
@event_source(data_class=EventBridgeEvent)
@logger.inject_lambda_context
def lambda_handler(event: EventBridgeEvent, context: LambdaContext) -> bool: