from discord.ext import commands from .CLient import clients __all__ = ( "clients", "Cog", # "user", # "server", ) class Cog(commands.Cog): """Base class for all cogs""" def __init__(self, bot: clients) -> None: self.bot = bot