Skip to content
auth.py 302 B
Newer Older
nimrod's avatar
nimrod committed
"""Check the auth.shore.co.il web service."""

from utils import website_handler

URLS = [
    {"url": "http://auth.shore.co.il/", "codes": [301]},
nimrod's avatar
nimrod committed
    {"url": "https://auth.shore.co.il/", "codes": [404]},
]

handler = website_handler(URLS)


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