moto/moto/dynamodb/urls.py
2013-05-03 19:33:13 -04:00

11 lines
187 B
Python

from .responses import DynamoHandler
url_bases = [
"https?://dynamodb.(.+).amazonaws.com",
"https?://sts.amazonaws.com",
]
url_paths = {
"{0}/": DynamoHandler().dispatch,
}