Files
abot/plugins/weather/__init__.py
2025-05-12 16:09:37 +08:00

7 lines
202 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 从当前包的main模块导入WeatherPlugin类
from .main import WeatherPlugin
# 提供get_plugin函数返回插件实例
def get_plugin():
"""获取插件实例"""
return WeatherPlugin()