moto/moto/cloudformation/__init__.py

8 lines
361 B
Python
Raw Normal View History

from __future__ import unicode_literals
2014-11-15 19:21:58 +00:00
from .models import cloudformation_backends
2017-02-24 02:37:43 +00:00
from ..core.models import base_decorator, deprecated_base_decorator
2019-10-31 15:44:26 +00:00
cloudformation_backend = cloudformation_backends["us-east-1"]
2017-02-12 05:22:29 +00:00
mock_cloudformation = base_decorator(cloudformation_backends)
2019-10-31 15:44:26 +00:00
mock_cloudformation_deprecated = deprecated_base_decorator(cloudformation_backends)