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