discord_bot / Botclient /__init__.py
imgar's picture
Update Botclient/__init__.py
63ea62b
raw
history blame contribute delete
265 Bytes
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