TypeError: __init__() missing 1 required keyword-only argument: 'intents'
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix="!")
client = discord.Client()
@client.event
async def on_ready():
print("Бот запущен")
@client.command("hello")
async def hello(ctx):
await ctx.send("")
client.run("токен бота")