1 Star 0 Fork 8

椰羊/Yunzai-Bot_小飞插件

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
小飞 提交于 2022-10-25 00:14 . update
/**
插件更新地址:https://gitee.com/xfdown/xiaofei-plugin
*/
const apps = {};
global.xiaofei_plugin = {
apps: apps
};
import fs from 'node:fs'
import { Version, Plugin_Path} from './components/index.js'
const files = fs.readdirSync(`${Plugin_Path}/apps`).filter(file => file.endsWith('.js'))
let ret = []
files.forEach((file) => {
ret.push(import(`./apps/${file}`))
})
ret = await Promise.allSettled(ret)
let ver = Version.ver;
logger.info(`---------^_^---------`)
logger.info(`小飞插件${ver}:初始化~`)
if(Version.yunzai[0] != '3'){
logger.error(`小飞插件${ver}:初始化失败,本插件仅支持Yunzai-Bot v3!`)
}else{
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
}
logger.info(`【${name}】模块载入成功!`)
apps[name] = ret[i].value[Object.keys(ret[i].value)[0]]
}
logger.info(`小飞插件${ver}:初始化完成!`)
}
logger.info(`---------------------`)
export { apps }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yeyang52/xiaofei-plugin.git
git@gitee.com:yeyang52/xiaofei-plugin.git
yeyang52
xiaofei-plugin
Yunzai-Bot_小飞插件
master

搜索帮助