Skip to content

Instantly share code, notes, and snippets.

@jattoabdul
Created July 11, 2018 09:28
Show Gist options
  • Save jattoabdul/4878fc1f6e024b9f7e0223e3aef64a28 to your computer and use it in GitHub Desktop.
Save jattoabdul/4878fc1f6e024b9f7e0223e3aef64a28 to your computer and use it in GitHub Desktop.
Worker Entry file for my tutorial series on "How to Build A Task Notification Bot for Slack with Python"
from app.actions import Actions
from app.utils.slackhelper import SlackHelper
# Main function
def main():
slackhelper = SlackHelper()
actions = Actions(slackhelper)
actions.notify_channel()
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment