Files
python-client-sdk/examples/commands.py
T
2021-11-07 10:39:19 +00:00

23 lines
485 B
Python
Executable File

import asyncio
import aiohttp
import revolt
from revolt.ext import commands
class Client(commands.CommandsMixin, revolt.Client):
async def get_prefix(self, message: revolt.Message):
return "!"
@commands.command()
async def ping(self, ctx: commands.Context):
await ctx.send("pong")
async def main():
async with aiohttp.ClientSession() as session:
client = Client(session, "BOT TOKEN HERE")
await client.start()
asyncio.run(main())