mirror of
https://github.com/Hestia-Homes/survey-extraction.git
synced 2026-06-08 11:17:29 +00:00
11 lines
285 B
Python
11 lines
285 B
Python
"""
|
|
A quick example of lambda working a function in python
|
|
"""
|
|
|
|
def handler(event, context):
|
|
print("Hello from Python function. This shold be running from a dockerfile env and executed on a aws lambda!")
|
|
return {
|
|
'statusCode': 200,
|
|
'body': 'Hello World'
|
|
}
|
|
|