7 lines
202 B
Python
7 lines
202 B
Python
# 从当前包的main模块导入WeatherPlugin类
|
||
from .main import WeatherPlugin
|
||
|
||
# 提供get_plugin函数,返回插件实例
|
||
def get_plugin():
|
||
"""获取插件实例"""
|
||
return WeatherPlugin() |