File size: 428 Bytes
6c0d4d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
AWS Lambda entrypoint for packaging.

Re-exports the existing repo-root `lambda_entrypoint.py` handler so Lambda
handler strings can move to `doc_redaction.lambda_entrypoint.lambda_handler`
without changing behavior.
"""

from __future__ import annotations

import importlib

_root_lambda = importlib.import_module("lambda_entrypoint")

lambda_handler = getattr(_root_lambda, "lambda_handler")

__all__ = ["lambda_handler"]