9 lines
219 B
Python
9 lines
219 B
Python
from .responses import SimpleSystemManagerResponse
|
|
|
|
url_bases = [
|
|
r"https?://ssm\.(.+)\.amazonaws\.com",
|
|
r"https?://ssm\.(.+)\.amazonaws\.com\.cn",
|
|
]
|
|
|
|
url_paths = {"{0}/$": SimpleSystemManagerResponse.dispatch}
|