mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-25 01:25:04 +08:00
15 lines
412 B
Python
15 lines
412 B
Python
from aiocqhttp.message import unescape
|
|
|
|
from none import on_command, CommandSession
|
|
from none.command import permissions as perm
|
|
|
|
|
|
@on_command('echo', only_to_me=False)
|
|
async def echo(session: CommandSession):
|
|
await session.send(session.current_arg)
|
|
|
|
|
|
@on_command('say', permission=perm.SUPERUSER, only_to_me=False)
|
|
async def _(session: CommandSession):
|
|
await session.send(unescape(session.current_arg))
|