mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-02-08 03:46:18 +08:00
14 lines
166 B
Python
14 lines
166 B
Python
from nonebot.adapters import Bot
|
|
|
|
|
|
async def get_bot(b: Bot) -> Bot:
|
|
return b
|
|
|
|
|
|
class SubBot(Bot):
|
|
...
|
|
|
|
|
|
async def sub_bot(b: SubBot) -> SubBot:
|
|
return b
|