8 lines
305 B
Python
8 lines
305 B
Python
from __future__ import unicode_literals
|
|
from .models import lambda_backends
|
|
from ..core.models import base_decorator, deprecated_base_decorator
|
|
|
|
lambda_backend = lambda_backends["us-east-1"]
|
|
mock_lambda = base_decorator(lambda_backends)
|
|
mock_lambda_deprecated = deprecated_base_decorator(lambda_backends)
|