Rst307

Results 1 issues of Rst307

import asyncio from amiyabot import Chain, AmiyaBot, Message bot = AmiyaBot(appid='x', token='x', private=True) @bot.on_message(keywords='hello') async def _(data: Message): return Chain(data).text(f'hello, {data.nickname}') asyncio.run(bot.start())