mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-27 18:45:05 +08:00
commit
c11c62f622
@ -26,7 +26,7 @@ options:
|
|||||||
|
|
||||||
```python {7-9}
|
```python {7-9}
|
||||||
from nonebot.log import logger
|
from nonebot.log import logger
|
||||||
from nonebot.dependencies import Depends
|
from nonebot.params import Depends
|
||||||
from nonebot import on_command, on_message
|
from nonebot import on_command, on_message
|
||||||
|
|
||||||
test = on_command("123")
|
test = on_command("123")
|
||||||
@ -52,7 +52,7 @@ async def _(x: dict = Depends(depend)):
|
|||||||
|
|
||||||
```python {2}
|
```python {2}
|
||||||
from nonebot.log import logger
|
from nonebot.log import logger
|
||||||
from nonebot.dependencies import Depends
|
from nonebot.params import Depends
|
||||||
from nonebot import on_command, on_message
|
from nonebot import on_command, on_message
|
||||||
|
|
||||||
test = on_command("123")
|
test = on_command("123")
|
||||||
@ -72,7 +72,7 @@ async def _(x: dict = Depends(depend)):
|
|||||||
|
|
||||||
```python {12}
|
```python {12}
|
||||||
from nonebot.log import logger
|
from nonebot.log import logger
|
||||||
from nonebot.dependencies import Depends
|
from nonebot.params import Depends
|
||||||
from nonebot import on_command, on_message
|
from nonebot import on_command, on_message
|
||||||
|
|
||||||
test = on_command("123")
|
test = on_command("123")
|
||||||
|
@ -26,7 +26,7 @@ options:
|
|||||||
|
|
||||||
```python {7-9}
|
```python {7-9}
|
||||||
from nonebot.log import logger
|
from nonebot.log import logger
|
||||||
from nonebot.dependencies import Depends
|
from nonebot.params import Depends
|
||||||
from nonebot import on_command, on_message
|
from nonebot import on_command, on_message
|
||||||
|
|
||||||
test = on_command("123")
|
test = on_command("123")
|
||||||
@ -52,7 +52,7 @@ async def _(x: dict = Depends(depend)):
|
|||||||
|
|
||||||
```python {2}
|
```python {2}
|
||||||
from nonebot.log import logger
|
from nonebot.log import logger
|
||||||
from nonebot.dependencies import Depends
|
from nonebot.params import Depends
|
||||||
from nonebot import on_command, on_message
|
from nonebot import on_command, on_message
|
||||||
|
|
||||||
test = on_command("123")
|
test = on_command("123")
|
||||||
@ -72,7 +72,7 @@ async def _(x: dict = Depends(depend)):
|
|||||||
|
|
||||||
```python {12}
|
```python {12}
|
||||||
from nonebot.log import logger
|
from nonebot.log import logger
|
||||||
from nonebot.dependencies import Depends
|
from nonebot.params import Depends
|
||||||
from nonebot import on_command, on_message
|
from nonebot import on_command, on_message
|
||||||
|
|
||||||
test = on_command("123")
|
test = on_command("123")
|
||||||
|
Loading…
Reference in New Issue
Block a user