mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
14 lines
337 B
Python
14 lines
337 B
Python
from pathlib import Path
|
|
|
|
import nonebot
|
|
from nonebot.plugin import PluginManager, _managers
|
|
|
|
manager = PluginManager(
|
|
search_path=[str((Path(__file__).parent / "plugins").resolve())]
|
|
)
|
|
_managers.append(manager)
|
|
|
|
# test load nested plugin with require
|
|
manager.load_plugin("nested_subplugin")
|
|
manager.load_plugin("nested_subplugin2")
|