Skip to content

Instantly share code, notes, and snippets.

@qmaruf
Created January 29, 2023 13:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qmaruf/67c30a6cd2c8fa888f495603f1ecd53c to your computer and use it in GitHub Desktop.
Save qmaruf/67c30a6cd2c8fa888f495603f1ecd53c to your computer and use it in GitHub Desktop.
def response(event, context):
response = {
"statusCode": 200,
"body": None
}
if event["message"] == "ping":
response["body"] = "pong"
else:
response["body"] = "Unknown message"
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment