1 Star 5 Fork 4

万念断绝/Lain-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 795 Bytes
一键复制 编辑 原始数据 按行查看 历史
import fs from 'fs'
import './lib/init.js'
import './lib/bot.js'
import './model/config.js'
import './adapter/adapter.js'
import './adapter/Bot/bot.js'
import './adapter/Bot/icqq.js'
let ret = []
let apps = {}
const files = fs.readdirSync('./plugins/Lain-plugin/apps').filter(file => file.endsWith('.js'))
files.forEach((file) => {
ret.push(import(`./apps/${file}`))
})
ret = await Promise.allSettled(ret)
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]]
for (let clazz of Object.keys(ret[i].value)) {
apps[clazz] = ret[i].value[clazz]
}
}
export { apps }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/all-thoughts-are-broken/Lain-plugin.git
[email protected]:all-thoughts-are-broken/Lain-plugin.git
all-thoughts-are-broken
Lain-plugin
Lain-plugin
main

搜索帮助