import discord
from discord.ext import commands
import os
bot = commands.Bot(".", intents=discord.Intents.all(), self_bot=True) # не меняя эту переменную
coglist = os.listdir("./cogs")
for f in coglist:
if f.endswith(".py"):
bot.load_extension("cogs." + f[:-3])
@bot.event
async def on_ready():
await bot.get_channel(945590422737137694).send("[+ | afs] bot started!")
bot.run("") #1