У меня просто не загружается кога, не знаю что с этим делать.
# Загрузка коги
async def load():
for filename in os.listdir("./cogs"):
if filename.endswith(".py"):
client.load_extension(f'cogs.{filename[:-3]}')
print(f"{filename[:-3]} is loaded")
# Код коги
import discord
from discord.ext import commands
class User(commands.Cog):
def __init__(self, client):
self.client = client
@commands.Cog.listener()
async def on_ready(self):
print(1)
@commands.command()
async def example(self,ctx):
await ctx.send("work")
def setup(client):
client.add_cog(User(client))
print(f">Extension {__name__} is ready")