moto/moto/emr/urls.py

11 lines
222 B
Python
Raw Normal View History

from __future__ import unicode_literals
2013-08-07 20:32:29 -04:00
from .responses import ElasticMapReduceResponse
url_bases = [
"https?://elasticmapreduce.(.+).amazonaws.com",
]
url_paths = {
2015-03-16 13:13:40 +01:00
'{0}/$': ElasticMapReduceResponse.dispatch,
2013-08-07 20:32:29 -04:00
}