moto/moto/elasticache/urls.py
2021-12-07 11:09:13 -01:00

12 lines
209 B
Python

"""elasticache base URL and path."""
from .responses import ElastiCacheResponse
url_bases = [
r"https?://elasticache\.(.+)\.amazonaws\.com",
]
url_paths = {
"{0}/$": ElastiCacheResponse.dispatch,
}