Created
January 5, 2026 19:13
-
-
Save larkintuckerllc/92f658e6b4d9f49b4cc0209f609522be to your computer and use it in GitHub Desktop.
This file contains hidden or 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 os | |
| from slack_bolt import App | |
| from slack_bolt.adapter.socket_mode import SocketModeHandler | |
| app = App(token=os.environ.get("SLACK_BOT_TOKEN")) | |
| if __name__ == "__main__": | |
| SocketModeHandler(app, os.environ["SLACK_APP_TOKEN"]).start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment