加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
js插件列表.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
玉玉了 提交于 2023-05-28 12:38 . V3
import common from "../../lib/common/common.js";
import path from "path";
import fs from "fs";
import plugin from '../../lib/plugins/plugin.js'
export class jsjs extends plugin {
constructor() {
super({
/** 功能名称 */
name: 'js插件列表',
/** 功能描述 */
dsc: '插件列表',
/** https://oicqjs.github.io/oicq/#events */
event: 'message',
/** 优先级,数字越小等级越高 */
priority: 1000,
rule: [
{
reg: '^#*(js|插件)列表$',
fnc: 'lie'
},
]
})
}
async lie(e) {
let dirname = './plugins/example'; // 修改为您的目录
let files = fs.readdirSync(dirname).filter(file => path.extname(file) === '.js');
let msg = `js插件列表:\n${files.map((file, i) => `${i + 1}. ${file}`).join('\n')}`;
await e.reply(msg);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化