from aws_lambda_powertools.event_handler import APIGatewayRestResolver from src.routers.base import router as base_router from src.routers.kyc_notification import router as kyc_notification_router def create_application() -> APIGatewayRestResolver: """Create API Gateway resolver.""" app = APIGatewayRestResolver(enable_validation=True) app.include_router(base_router) app.include_router(kyc_notification_router) return app app = create_application()