"""Check Gitlab."""

from utils import website_handler

URLS = [
    {"url": "http://git.shore.co.il/", "codes": [301]},
    {"url": "https://git.shore.co.il/", "codes": [302]},
    {"url": "https://git.shore.co.il/explore/"},
]

handler = website_handler(URLS)


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