631810a
63ea62b
631810a
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | from discord.ext import commands
from .CLient import clients
__all__ = (
"clients",
"Cog",
)
class Cog(commands.Cog):
"""Base class for all cogs"""
def __init__(self, bot: clients) -> None:
self.bot = bot
|