9 lines
114 B
Python
9 lines
114 B
Python
import discord
|
|
|
|
file = open("TOKEN", "r")
|
|
token = file.read()
|
|
file.close()
|
|
|
|
bot = discord.Client()
|
|
|
|
bot.run(token) |