1 Star 1 Fork 0

吉祥/黄历插件V3

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 723 Bytes
一键复制 编辑 原始数据 按行查看 历史
吉祥 提交于 2022-09-17 11:51 . 修改路径错误
import fs from 'node:fs'
import * as config from "./config/config.js";
const files = fs.readdirSync('./plugins/python-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]]
}
logger.info(`-----------------------`);
logger.info(`python插件v3.0.0加载成功`);
logger.info(`-----------------------`);
export { apps }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/endofworld_of_freshboy/python-plugin.git
git@gitee.com:endofworld_of_freshboy/python-plugin.git
endofworld_of_freshboy
python-plugin
黄历插件V3
master

搜索帮助