6 lines
104 B
Python
6 lines
104 B
Python
def main(event, context):
|
|
return {
|
|
"statusCode": 200,
|
|
"body": "hello, world!"
|
|
}
|