import discord
from discord.ext import commands
client = commands.Bot(command_prefix="/")
@client.event
async def on_ready():
print("Bot connected")
#***
@client.command()
async def brbr(ctx):
await ctx.author.send("Hello, world")
client.run('token')