mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
12 lines
226 B
Python
12 lines
226 B
Python
from __future__ import print_function
|
|
|
|
import json
|
|
import logging
|
|
|
|
log = logging.getLogger()
|
|
log.setLevel(logging.DEBUG)
|
|
|
|
def handler(event, context):
|
|
log.debug("Received event {}".format(json.dumps(event)))
|
|
return {}
|