12 lines
225 B
Python
12 lines
225 B
Python
from __future__ import unicode_literals
|
|
from .responses import DynamoHandler
|
|
|
|
url_bases = [
|
|
"https?://dynamodb.(.+).amazonaws.com",
|
|
"https?://sts.amazonaws.com",
|
|
]
|
|
|
|
url_paths = {
|
|
"{0}/": DynamoHandler.dispatch,
|
|
}
|