moto/moto/swf/__init__.py
2019-10-31 10:36:05 -07:00

7 lines
284 B
Python

from __future__ import unicode_literals
from .models import swf_backends
from ..core.models import base_decorator, deprecated_base_decorator
swf_backend = swf_backends["us-east-1"]
mock_swf = base_decorator(swf_backends)
mock_swf_deprecated = deprecated_base_decorator(swf_backends)