mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-06-11 22:57:53 +00:00
7 lines
126 B
Python
7 lines
126 B
Python
import none
|
|
|
|
|
|
@none.on_command('echo', aliases=('say',))
|
|
async def _(bot, ctx, session):
|
|
await bot.send(ctx, session.arg)
|