moto/moto/cloudformation/urls.py

10 lines
178 B
Python

from .responses import CloudFormationResponse
url_bases = [
"https?://cloudformation.(.+).amazonaws.com",
]
url_paths = {
'{0}/$': CloudFormationResponse().dispatch,
}