12 lines
227 B
Python
12 lines
227 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,
|
|
}
|