您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. import os
  2. from config import pconf
  3. class Plugin:
  4. def __init__(self):
  5. self.handlers = {}
  6. def load_config(self) -> dict:
  7. """
  8. 加载当前插件配置
  9. :return: 插件配置字典
  10. """
  11. return pconf(self.name)
  12. def get_help_text(self, **kwargs):
  13. return "暂无帮助信息"