moto/moto/kinesis/urls.py

11 lines
195 B
Python
Raw Normal View History

2014-11-26 15:55:58 +00:00
from __future__ import unicode_literals
from .responses import KinesisResponse
url_bases = [
"https?://kinesis.(.+).amazonaws.com",
]
url_paths = {
2015-03-16 12:13:40 +00:00
'{0}/$': KinesisResponse.dispatch,
2014-11-26 15:55:58 +00:00
}