Skip to content

Instantly share code, notes, and snippets.

@qmaruf
Created January 29, 2023 13:17
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/48bfaff462f42a699459d19a25cb238e to your computer and use it in GitHub Desktop.
Save qmaruf/48bfaff462f42a699459d19a25cb238e 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