client = commands.Bot(command_prefix=config.PREFIX)
client.remove_command('help')
@client.event
async def on_message(ctx):
try:
print(ctx)
except AttributeError:
pass
#Test command
@client.command()
async def test(ctx):
await ctx.send('`Привет`')
client.command
без pass_context