Skip to content

Instantly share code, notes, and snippets.

@Arthurdw
Created September 16, 2020 11:55
Show Gist options
  • Save Arthurdw/3964f849ce47dbe4cd75c8b24f2d1620 to your computer and use it in GitHub Desktop.
Save Arthurdw/3964f849ce47dbe4cd75c8b24f2d1620 to your computer and use it in GitHub Desktop.
Putting your bot online!
from utilsx.discord import BotX
BOT_TOKEN = "XXXYOURBOTTOKENHEREXXX"
class MyBot(BotX):
pass
if __name__ == "__main__":
MyBot().run(BOT_TOKEN)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment