2022-05-13 21:50:07 +00:00

10 lines
241 B
Python

from .responses import MediaStoreDataResponse
url_bases = [
r"https?://data\.mediastore\.(.+)\.amazonaws.com",
]
response = MediaStoreDataResponse()
url_paths = {"{0}/$": response.dispatch, "{0}/(?P<Path>[^/.]+)$": response.dispatch}