mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-28 08:12:14 +08:00
15 lines
343 B
Python
15 lines
343 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from nonebot.rule import Rule
|
|
from nonebot.typing import Event
|
|
from nonebot.plugin import on_command
|
|
from nonebot.adapters.cqhttp import Bot
|
|
|
|
test_command = on_command(("帮助",))
|
|
|
|
|
|
@test_command.handle()
|
|
async def test_handler(bot: Bot, event: Event, state: dict):
|
|
print(state["_prefix"])
|