Created
May 23, 2020 03:17
-
-
Save epmallmann/af8d8f857578c858dad1d2c62ea380e5 to your computer and use it in GitHub Desktop.
diga_oi_lambda
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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