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