moto/moto/awslambda_simple/responses.py
2023-11-04 09:37:11 -01:00

9 lines
280 B
Python

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