Serge Dukic 1ed55034b8 Fix function name to be "http"
So that it matches what is in the "serverless.yml" file.

Issue(s): None
2019-02-09 21:22:21 +13:00

12 lines
362 B
Python

def http(request):
"""Responds to any HTTP request.
Args:
request (flask.Request): HTTP request object.
Returns:
The response text or any set of values that can be turned into a
Response object using
`make_response <http://flask.pocoo.org/docs/1.0/api/#flask.Flask.make_response>`.
"""
return f'Hello World!'