Responses
Responses
Introduction
JSON Responses
from masonite.response import Response
def show(self, response: Response):
return response.json({'key': 'value'})def show(self):
return {'key': 'value'}View and Text Response
Redirecting
Last updated