next.py/examples/basic.py

17 lines
393 B
Python
Raw Normal View History

2024-11-05 17:57:38 +03:00
import asyncio
import aiohttp
import next
class Client(next.Client):
async def on_message(self, message: next.Message):
if message.content == "hello":
await message.channel.send("hi how are you")
async def main():
async with aiohttp.ClientSession() as session:
client = Client(session, "BOT TOKEN HERE")
await client.start()
asyncio.run(main())