SilveryStar / Adachi-BOT

Chatbot framework
https://docs.adachi.top
MIT License
366 stars 70 forks source link

fix one bug and add feature. #313

Closed BennettChina closed 2 years ago

BennettChina commented 2 years ago

以下为插件的定义信息:

interface PluginSetting {
    pluginName: string;
    cfgList: cmd.ConfigType[];
    aliases?: string[]; // 插件的别名
    repo?: string | {
        owner: string;// 仓库拥有者名称
        repoName: string;// 仓库名称
        ref?: string;// 分支名称
    }; // 设置为非必须兼容低版本插件
}