This commit is contained in:
nin0 2025-05-04 18:56:16 -04:00
parent e922cedf9e
commit 3aa4595aa9
Signed by: nin0
SSH key fingerprint: SHA256:NOoDnFVvZNFvqfXCIhzr6oCTDImZAbTTuyAysZ8Ufk8

View file

@ -16,10 +16,10 @@ class Vaius(commands.Bot):
if ctx.valid:
await self.invoke(ctx)
@Vaius.command
async def ping(self, ctx):
await ctx.reply("Pong!")
client = Vaius(command_prefix="v", user_bot=True, chunk_guilds_at_startup=False)
@client.command()
async def ping(ctx):
await ctx.reply("Pong!")
client.run(os.getenv("TOKEN"))