Skip to content
mta_sts.py 304 B
Newer Older
from utils import check_urls


def handler(event, context):  # pylint: disable=unused-argument
    """Lambda event handler."""
    checks = [
        {"url": "https://mta-sts.shore.co.il/.well-known/mta-sts.txt"},
    ]
    check_urls(checks)


if __name__ == "__main__":
    handler("event", "context")