Skip to content
mta_sts.py 239 B
Newer Older
nimrod's avatar
nimrod committed
"""Check MTA-STS web page."""

nimrod's avatar
nimrod committed
from utils import website_handler
nimrod's avatar
nimrod committed
URLS = [
    {"url": "https://mta-sts.shore.co.il/.well-known/mta-sts.txt"},
]
nimrod's avatar
nimrod committed
handler = website_handler(URLS)


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