moto/moto/opensearch/urls.py
2023-03-26 12:43:28 +00:00

11 lines
223 B
Python

"""opensearch base URL and path."""
from .responses import OpenSearchServiceResponse
url_bases = [r"https?://es\.(.+)\.amazonaws\.com"]
response = OpenSearchServiceResponse()
url_paths = {"{0}/.*$": response.dispatch}