"""Check the Elasticsearch service.""" from utils import website_handler URLS = [ {"url": "http://elasticsearch.shore.co.il/", "codes": [301]}, {"url": "https://elasticsearch.shore.co.il/", "codes": [403]}, ] handler = website_handler(URLS) if __name__ == "__main__": handler("event", "context")