Skip to content
vouch.py 270 B
Newer Older
nimrod's avatar
nimrod committed
from utils import website_handler
nimrod's avatar
nimrod committed
URLS = [
    {"url": "http://vouch.shore.co.il/", "codes": [301, 302]},
    {"url": "https://vouch.shore.co.il/validate", "codes": [401]},
]
nimrod's avatar
nimrod committed
handler = website_handler(URLS)
nimrod's avatar
nimrod committed


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