moto/moto/autoscaling/__init__.py
2014-08-26 17:56:56 -04:00

9 lines
250 B
Python

from .models import autoscaling_backend, autoscaling_backends
from ..core.models import MockAWS
def mock_autoscaling(func=None):
if func:
return MockAWS(autoscaling_backends)(func)
else:
return MockAWS(autoscaling_backends)