17 lines
358 B
Python
17 lines
358 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}!')
|
|
|
|
for ext in ['commands.fun', 'commands.moderation']:
|
|
bot.load_extension(ext)
|
|
|
|
bot.run("") # token |