Quick Start
Creating a Script
Creating Scripts
@client.command(name='MyInfo', description='Shows my information', usage='')@client.command(name="MyInfo", description="Shows my information", usage="")
async def _myinfo(ctx):
username: str = "Gowixx"
github: str = "https://github.com/Gowixx/"
website: str = "https://gowixx.xyz/"
await ctx.message.edit(
content = f"""
> Hey there! I'm {username}
> You can check out my GitHub here: <{github}>
> My website is also here: {website}
""")Last updated