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-24 02:37:43 +00:00
from ..core.models import base_decorator, deprecated_base_decorator
2019-10-31 15:44:26 +00:00
lambda_backend = lambda_backends["us-east-1"]
2017-02-12 05:22:29 +00:00
mock_lambda = base_decorator(lambda_backends)
2017-02-16 03:35:45 +00:00
mock_lambda_deprecated = deprecated_base_decorator(lambda_backends)