1 Star 0 Fork 15

东东/trss-xianxin-plugin

forked from 星雪/trss-xianxin-plugin
暂停
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
星雪 提交于 2023-10-16 01:46 . 更新信息
import fs from "node:fs";
import xxCfg from "./model/xxCfg.js";
import chalk from 'chalk'
if (!global.segment) {
try {
global.segment = (await import("oicq")).segment;
} catch (err) {
global.segment = (await import("icqq")).segment;
}
}
const versionData = xxCfg.getdefSet("version", "version");
logger.info(chalk.rgb(0, 190, 255)(`--------------------------`));
logger.info(chalk.rgb(255 ,225 ,255)(`主要适配trss版 闲心插件 ${versionData[0].version} 初始化~`));
logger.info(chalk.rgb(255 ,225 ,255)(`仓库地址-珊星雪/snowtafir:`));
logger.info(chalk.rgb(255, 245, 255)(`https://gitee.com/snowtafir/xianxin-plugin`));
logger.info(chalk.rgb(255, 245, 255)(`原作者:@闲心/xianxincoder`));
logger.info(chalk.rgb(0, 190, 255)(`--------------------------`));
const files = fs
.readdirSync("./plugins/trss-xianxin-plugin/apps")
.filter((file) => file.endsWith(".js"));
let ret = [];
files.forEach((file) => {
ret.push(import(`./apps/${file}`));
});
ret = await Promise.allSettled(ret);
let apps = {};
for (let i in files) {
let name = files[i].replace(".js", "");
if (ret[i].status != "fulfilled") {
logger.error(`载入插件错误:${logger.red(name)}`);
logger.error(ret[i].reason);
continue;
}
apps[name] = ret[i].value[Object.keys(ret[i].value)[0]];
}
export { apps };
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/dong8/xianxin-plugin.git
git@gitee.com:dong8/xianxin-plugin.git
dong8
xianxin-plugin
trss-xianxin-plugin
main

搜索帮助