moto/moto/emr/urls.py
2013-08-07 20:32:29 -04:00

10 lines
184 B
Python

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