starbot/nightly/nightly/bot.py
2023-09-24 09:02:23 +00:00

11 lines
300 B
Python

import discord
from discord.ext import commands
class NightlyBot(commands.Bot):
def __init__(self) -> None:
super().__init__(
command_prefix="🌟",
intents=discord.Intents(message_content=True, guild_messages=True, guild_reactions=True, guilds=True),
)