16 lines
393 B
Python
16 lines
393 B
Python
import discord
|
|
from discord.ext import commands
|
|
|
|
intents = discord.Intents.default()
|
|
intents.members = True
|
|
|
|
bot = discord.Bot(intents=intents)
|
|
|
|
class Kiafumi(discord.Bot):
|
|
@bot.event
|
|
async def on_ready():
|
|
print(f'Logged on as {bot.user}!')
|
|
|
|
bot.load_extension('commands.fun') # cogs_folder.filename
|
|
|
|
bot.run("OTUwMTA4Nzg3MTExNTIyMzc0.YiUHww.s4ydKNtD9sTB1OpQGYdnorDf5JY") |