代码拉取完成,页面将自动刷新
// 适配V3 Yunzai,将index.js移至app/index.js
// ======================================================================
// 适配参考zhi-plugin,miao-plugin,兼容V2以及V3云崽,谢谢喵喵插件和白纸插件的贡献 ^_^
// ======================================================================
import { Data, isV3, moraVer } from './components/index.js'
import fs from 'node:fs'
if (!global.segment) global.segment = (await import('oicq')).segment
let index = { mora: {} }
if (isV3) {
index = await Data.importModule('/plugins/mora-plugin/adapter', 'index.js')
}
export const mora = index.mora || {}
logger.info(`摩拉插件${moraVer}初始化~`)
/** V3导入插件 */
const files = fs.readdirSync('./plugins/mora-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 }
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。