Skip to content

Instantly share code, notes, and snippets.

@epmallmann
Created May 23, 2020 03:17
Show Gist options
  • Save epmallmann/af8d8f857578c858dad1d2c62ea380e5 to your computer and use it in GitHub Desktop.
Save epmallmann/af8d8f857578c858dad1d2c62ea380e5 to your computer and use it in GitHub Desktop.
diga_oi_lambda
import json
def lambda_handler(event, context):
response = {
"response_type": "in_channel",
"text": "Oi!"
}
return {
'statusCode': 200,
'body': json.dumps(response)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment