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