6 lines
128 B
Python
6 lines
128 B
Python
def handler(event, context):
|
|
try:
|
|
print('lambda handle')
|
|
except Exception as e:
|
|
print('exception')
|