moto/moto/emr/urls.py
2021-10-18 19:44:29 +00:00

9 lines
233 B
Python

from .responses import ElasticMapReduceResponse
url_bases = [
r"https?://(.+)\.elasticmapreduce\.amazonaws.com",
r"https?://elasticmapreduce\.(.+)\.amazonaws.com",
]
url_paths = {"{0}/$": ElasticMapReduceResponse.dispatch}