moto/moto/awslambda/__init__.py

8 lines
305 B
Python
Raw Normal View History

from __future__ import unicode_literals
from .models import lambda_backends
2017-02-23 21:37:43 -05:00
from ..core.models import base_decorator, deprecated_base_decorator
lambda_backend = lambda_backends['us-east-1']
2017-02-12 00:22:29 -05:00
mock_lambda = base_decorator(lambda_backends)
2017-02-15 22:35:45 -05:00
mock_lambda_deprecated = deprecated_base_decorator(lambda_backends)