You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

plugin.py 338B

2 jaren geleden
1 jaar geleden
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 "暂无帮助信息"