]> git.cworth.org Git - turbot/blob - turbot/actions.py
Parse block_actions payload and farm out to turbot.actions.new_hunt function
[turbot] / turbot / actions.py
1 def new_hunt(payload):
2
3     print("In new_hunt function")
4
5     return {
6         'statusCode': 200,
7         'body': 'OK'
8     }