"""Base handlers.""" from aws_lambda_powertools.event_handler.api_gateway import Router import config router = Router() @router.get(config.HEALTH_CHECK) def health() -> dict[str, str]: """Check the health of the application.""" return {'status': 'ok'}