签到功能迁移到插件模块下

This commit is contained in:
liuwei
2025-03-19 17:54:21 +08:00
parent 7593483a40
commit 6902919cda
6 changed files with 244 additions and 215 deletions
+7
View File
@@ -0,0 +1,7 @@
# 从当前包的main模块导入MessageSignPlugin类
from .main import MessageSignPlugin
# 提供get_plugin函数,返回插件实例
def get_plugin():
"""获取插件实例"""
return MessageSignPlugin()