Не запускается бот в дискорд, ничего не пишет в терминале, нету ошибок и прочего
import discord
import json
from discord.ext import commands
file = open('config.json','r')
config = json.load(file)
intents = discord.Intents.default()
bot = commands.Bot(command_prefix=config['prefix'], intents=intents)
@bot.command(name='ping')
async def ping(ctx):
await ctx.send(f'{ctx.author.mention}pong')
@bot.event
async def on_ready():
print(f"Bot {bot.user} Is ready to work!")
bot.run(config['MTE0NzEyMzM3MTQwNzA2MTExMg.GkjAuh.egfxmL1x_MMvg1G_gKjGkIZXrG-Txne_K64qCc'])