SheepBotFrame/run.py

9 lines
114 B
Python
Raw Normal View History

import discord
file = open("TOKEN", "r")
token = file.read()
file.close()
2021-01-12 12:49:03 -06:00
bot = discord.Client()
bot.run(token)