discordbot/run_wheatley_bot.py
2025-04-28 15:18:28 -06:00

13 lines
407 B
Python

import os
import sys
import asyncio
import wheatley_bot # Changed import from gurt_bot
if __name__ == "__main__":
try:
asyncio.run(wheatley_bot.main()) # Changed function call
except KeyboardInterrupt:
print("Wheatley Bot stopped by user.") # Changed print statement
except Exception as e:
print(f"An error occurred running Wheatley Bot: {e}") # Changed print statement