8 lines
145 B
Python
8 lines
145 B
Python
import json
|
|
|
|
|
|
def lambda_handler(event, context):
|
|
return {
|
|
'statusCode': 200,
|
|
'body': json.dumps('Hello from Lambda!')
|
|
}
|