Spaces:
Running
Running
| # -*- coding: utf-8 -*- | |
| """ | |
| 导出插件系统 | |
| 插件式导出架构,支持动态加载和配置 | |
| """ | |
| from .base import ExportPlugin, PluginOption, OptionType | |
| from .loader import load_plugins, get_builtin_plugins | |
| __all__ = [ | |
| 'ExportPlugin', | |
| 'PluginOption', | |
| 'OptionType', | |
| 'load_plugins', | |
| 'get_builtin_plugins' | |
| ] | |