mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-06 12:06:45 +00:00
Some new things
This commit is contained in:
@ -2,14 +2,21 @@ from aiocqhttp.message import unescape
|
||||
|
||||
import none
|
||||
from none import permissions as perm
|
||||
from none.command import Session
|
||||
from none.helpers import send
|
||||
|
||||
|
||||
@none.on_command('echo')
|
||||
async def _(bot, ctx, session):
|
||||
await send(bot, ctx, session.arg)
|
||||
async def echo(bot, ctx, session: Session):
|
||||
text = session.require_arg('text')
|
||||
await send(bot, session.ctx, text)
|
||||
|
||||
|
||||
@echo.argparser
|
||||
def _(session: Session):
|
||||
session.args['text'] = session.current_arg
|
||||
|
||||
|
||||
@none.on_command('say', permission=perm.SUPERUSER)
|
||||
async def _(bot, ctx, session):
|
||||
await send(bot, ctx, unescape(session.arg))
|
||||
async def _(bot, ctx, session: Session):
|
||||
await send(bot, session.ctx, unescape(session.current_arg))
|
||||
|
Reference in New Issue
Block a user