mirror of
https://github.com/zhayujie/chatgpt-on-wechat.git
synced 2026-01-19 01:21:01 +08:00
7 lines
141 B
Python
7 lines
141 B
Python
class Plugin:
|
|
def __init__(self):
|
|
self.handlers = {}
|
|
|
|
def get_help_text(self, **kwargs):
|
|
return "暂无帮助信息"
|