mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-01-31 23:51:28 +08:00
Remove "switch" command
This commit is contained in:
parent
6491f274fb
commit
be2e44bc96
@ -1,8 +1,5 @@
|
||||
import asyncio
|
||||
|
||||
from none import on_command, CommandSession, permission as perm
|
||||
from none.command import kill_current_session
|
||||
from none.message import unescape, Message, handle_message
|
||||
from none.message import unescape
|
||||
|
||||
|
||||
@on_command('echo')
|
||||
@ -11,18 +8,6 @@ async def echo(session: CommandSession):
|
||||
|
||||
|
||||
@on_command('say', permission=perm.SUPERUSER)
|
||||
async def _(session: CommandSession):
|
||||
async def say(session: CommandSession):
|
||||
await session.send(
|
||||
unescape(session.get_optional('message') or session.current_arg))
|
||||
|
||||
|
||||
@on_command('switch', privileged=True)
|
||||
async def _(session: CommandSession):
|
||||
kill_current_session(session.bot, session.ctx)
|
||||
|
||||
msg = Message(session.current_arg)
|
||||
await session.send(msg)
|
||||
|
||||
ctx = session.ctx.copy()
|
||||
ctx['message'] = msg
|
||||
asyncio.ensure_future(handle_message(session.bot, ctx))
|
||||
|
Loading…
x
Reference in New Issue
Block a user