🔀 Merge branch master

This commit is contained in:
yanyongyu
2022-02-07 11:38:52 +08:00
5 changed files with 533 additions and 94 deletions

View File

@ -26,7 +26,7 @@ options:
```python {7-9}
from nonebot.log import logger
from nonebot.dependencies import Depends
from nonebot.params import Depends
from nonebot import on_command, on_message
test = on_command("123")
@ -52,7 +52,7 @@ async def _(x: dict = Depends(depend)):
```python {2}
from nonebot.log import logger
from nonebot.dependencies import Depends
from nonebot.params import Depends
from nonebot import on_command, on_message
test = on_command("123")
@ -72,7 +72,7 @@ async def _(x: dict = Depends(depend)):
```python {12}
from nonebot.log import logger
from nonebot.dependencies import Depends
from nonebot.params import Depends
from nonebot import on_command, on_message
test = on_command("123")