mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-17 05:17:37 +08:00
18 lines
413 B
Python
18 lines
413 B
Python
"""
|
|
Foxel 插件系统
|
|
|
|
提供 .foxpkg 插件包的安装、管理和运行时加载功能。
|
|
"""
|
|
|
|
from domain.plugins.loader import PluginLoader, PluginLoadError
|
|
from domain.plugins.service import PluginService
|
|
from domain.plugins.startup import init_plugins, load_installed_plugins
|
|
|
|
__all__ = [
|
|
"PluginLoader",
|
|
"PluginLoadError",
|
|
"PluginService",
|
|
"init_plugins",
|
|
"load_installed_plugins",
|
|
]
|