matchy/py/matchy.py
Marc Di Luzio f4f6df90fb Pull out the owner cog parts
Also make them use is_owner() rather than custom auth
2024-08-13 20:28:10 +01:00

41 lines
1,008 B
Python
Executable file

"""
matchy.py - Discord bot that matches people into groups
"""
import logging
import discord
from discord.ext import commands
import config
import state
from matchy_cog import MatchyCog
from owner_cog import OwnerCog
import match_button
State = state.load_from_file()
logger = logging.getLogger("matchy")
logger.setLevel(logging.INFO)
intents = discord.Intents.default()
intents.message_content = True
intents.members = True
bot = commands.Bot(command_prefix='$',
description="Matchy matches matchees", intents=intents)
@bot.event
async def setup_hook():
await bot.add_cog(MatchyCog(bot, State))
await bot.add_cog(OwnerCog(bot))
# TODO: This line feels like it should be in the cog?
bot.add_dynamic_items(match_button.DynamicGroupButton)
@bot.event
async def on_ready():
logger.info("Logged in as %s", bot.user.name)
if __name__ == "__main__":
handler = logging.StreamHandler()
bot.run(config.Config.token, log_handler=handler, root_logger=True)