11 lines
217 B
Python
11 lines
217 B
Python
from __future__ import unicode_literals
|
|
from .responses import DynamoDBStreamsHandler
|
|
|
|
url_bases = [
|
|
"https?://streams.dynamodb.(.+).amazonaws.com"
|
|
]
|
|
|
|
url_paths = {
|
|
"{0}/$": DynamoDBStreamsHandler.dispatch,
|
|
}
|