SheepBotFrame/run.py
2021-01-12 19:49:03 +01:00

9 lines
114 B
Python

import discord
file = open("TOKEN", "r")
token = file.read()
file.close()
bot = discord.Client()
bot.run(token)