moto/moto/awslambda_simple/responses.py
2024-02-11 13:47:34 -01:00

9 lines
280 B
Python

from ..awslambda.responses import LambdaResponse
from .models import LambdaBackend, lambda_simple_backends
class LambdaSimpleResponse(LambdaResponse):
@property
def backend(self) -> LambdaBackend:
return lambda_simple_backends[self.current_account][self.region]