moto/scripts/template/lib/responses.py.j2

16 lines
339 B
Plaintext
Raw Normal View History

from __future__ import unicode_literals
from moto.core.responses import BaseResponse
from .models import {{ service }}_backends
class {{ service_class }}Response(BaseResponse):
@property
def {{ service }}_backend(self):
return {{ service }}_backends[self.region]
# add methods from here
2017-09-26 15:46:18 +00:00
# add templates from here