kiafumi/kiafumi.py

17 lines
358 B
Python
Raw Normal View History

2022-03-07 00:16:13 +00:00
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}!')
2022-03-07 04:19:24 +00:00
for ext in ['commands.fun', 'commands.moderation']:
bot.load_extension(ext)
2022-03-07 00:16:13 +00:00
2022-03-07 04:19:24 +00:00
bot.run("") # token