moto/moto/kms/urls.py

6 lines
133 B
Python
Raw Normal View History

2015-06-30 05:44:39 -04:00
from .responses import KmsResponse
url_bases = [r"https?://kms\.(.+)\.amazonaws\.com"]
2015-06-30 05:44:39 -04:00
2019-10-31 08:44:26 -07:00
url_paths = {"{0}/$": KmsResponse.dispatch}