""" Lambda entry point for the AWS users key watchdog """ # Direct import from handler.py for clearer code structure from src.handler import lambda_handler as main_handler def lambda_handler(event, context): """AWS Lambda entry point function that delegates to the main handler. Args: event: The event dict that contains the entire request context: The context object that contains environment info Returns: The response from the main handler """ return main_handler(event, context)