加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
lcroof 提交于 2024-07-27 15:00 . B站推送更新
import fs from 'node:fs'
import bilibili from './components/biliPush.js'
if (!global.segment) {
global.segment = (await import("oicq")).segment
}
if (!global.core) {
try {
global.core = (await import("oicq")).core
} catch (err) {}
}
const files = fs.readdirSync('./plugins/xiaojiao-plugin/apps').filter(file => file.endsWith('.js'))
let ret = []
logger.info('xiaojiao-plugin载入成功!')
logger.info('仓库地址 https://gitee.com/lcroof/xiaojiao-plugin')
logger.info('Created By 欧阳青瓜')
logger.info('-------------------')
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]]
}
bilibili.initBiliPushJson(); // 初始化
bilibili.task();//执行
export { apps }
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化