9 lines
280 B
Python
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]
|