in codes/lambda/rest-function/src/handler.py [0:0]
def create_response_body(books) -> str:
if books is not None:
body = {
'status': 'success',
'books': books
}
else:
body = {
'status': 'fail'
}
return json.dumps(body)