moto/moto/cloudformation/urls.py
2015-03-16 13:13:40 +01:00

11 lines
216 B
Python

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