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