mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
12 lines
362 B
Python
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!'
|
|
|