15 lines
290 B
Python
15 lines
290 B
Python
from discord.ext.commands import Cog
|
|
|
|
from classes.pycord_bot import PycordBot
|
|
|
|
|
|
class Config(Cog):
|
|
"""Cog with guild configuration commands."""
|
|
|
|
def __init__(self, bot: PycordBot):
|
|
self.bot: PycordBot = bot
|
|
|
|
|
|
def setup(bot: PycordBot) -> None:
|
|
bot.add_cog(Config(bot))
|