Skip to content
myip.py 323 B
Newer Older
nimrod's avatar
nimrod committed
from utils import check_urls


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


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