diff --git a/quote/__init__.py b/quote/__init__.py index 58b0885..21130ed 100644 --- a/quote/__init__.py +++ b/quote/__init__.py @@ -7,4 +7,4 @@ from . import quotes def main(req: func.HttpRequest) -> func.HttpResponse: logging.info("Python HTTP trigger function processed a request.") - return func.HttpResponse(json.dumps({"message": random.choice(quotes.quotes)})) + return func.HttpResponse(json.dumps({"quote": random.choice(quotes.quotes)}))