moto/moto/dynamodb2/urls.py
2013-12-10 11:51:54 +02: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,
}