nonebot2/none/plugins/base.py

16 lines
386 B
Python
Raw Normal View History

2018-06-15 15:00:58 +08:00
from aiocqhttp.message import unescape
2018-06-15 06:58:24 +08:00
import none
2018-06-15 15:00:58 +08:00
from none import permissions as perm
2018-06-27 22:05:12 +08:00
from none.command import CommandSession
2018-06-15 15:00:58 +08:00
@none.on_command('echo')
2018-06-27 22:05:12 +08:00
async def echo(session: CommandSession):
2018-06-25 16:50:34 +08:00
await session.send(session.current_arg)
2018-06-15 06:58:24 +08:00
2018-06-15 15:00:58 +08:00
@none.on_command('say', permission=perm.SUPERUSER)
2018-06-27 22:05:12 +08:00
async def _(session: CommandSession):
2018-06-25 16:50:34 +08:00
await session.send(unescape(session.current_arg))