8 lines
325 B
Python
8 lines
325 B
Python
from pydantic import BaseModel, Field
|
|
|
|
class Config(BaseModel):
|
|
"""命令列表插件配置"""
|
|
plugin_name: str = "命令列表"
|
|
plugin_description: str = "获取当前机器人支持的所有指令"
|
|
plugin_usage: str = "发送 '指令列表' 获取所有支持的指令"
|
|
plugin_author: str = "Assistant" |