mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-16 19:11:00 +00:00
add log and config docs
This commit is contained in:
@ -3,7 +3,7 @@ HOST=0.0.0.0
|
||||
PORT=2333
|
||||
DEBUG=true
|
||||
|
||||
COMMAND_START={"", "/", "#"}
|
||||
COMMAND_SEP={"/", "."}
|
||||
COMMAND_START=["", "/", "#"]
|
||||
COMMAND_SEP=["/", "."]
|
||||
|
||||
CUSTOM_CONFIG={"custom": 1}
|
||||
|
@ -1,7 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from nonebot.rule import Rule
|
||||
from nonebot.typing import Event
|
||||
from nonebot.plugin import on_message
|
||||
from nonebot.adapters.cqhttp import Bot
|
||||
@ -14,6 +13,7 @@ async def test_handler(bot: Bot, event: Event, state: dict):
|
||||
print("Test Matcher Received:", event)
|
||||
print("Current State:", state)
|
||||
state["event"] = event
|
||||
await bot.send_private_msg(message="Received", user_id=event.user_id)
|
||||
|
||||
|
||||
@test_message.receive()
|
||||
|
@ -5,7 +5,7 @@ from nonebot.plugin import on_metaevent
|
||||
from nonebot.typing import Bot, Event
|
||||
|
||||
|
||||
def heartbeat(bot: Bot, event: Event) -> bool:
|
||||
async def heartbeat(bot: Bot, event: Event, state: dict) -> bool:
|
||||
return event.detail_type == "heartbeat"
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user