Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -86,7 +86,7 @@ async def on_raw_reaction_add(payload):
|
|
86 |
await message.reply(f"{translated_text}")
|
87 |
|
88 |
def run_discord_bot():
|
89 |
-
bot.run(os.getenv
|
90 |
|
91 |
# Run the Discord bot in a separate daemon thread
|
92 |
threading.Thread(target=run_discord_bot, daemon=True).start()
|
|
|
86 |
await message.reply(f"{translated_text}")
|
87 |
|
88 |
def run_discord_bot():
|
89 |
+
bot.run(os.getenv("token")) # Replace with your actual token
|
90 |
|
91 |
# Run the Discord bot in a separate daemon thread
|
92 |
threading.Thread(target=run_discord_bot, daemon=True).start()
|