1 Star 0 Fork 15

石卓林/ap-plugin

forked from 渔火Arcadia/ap-plugin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.js 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
/*
* @Author: 渔火Arcadia https://github.com/yhArcadia
* @Date: 2022-12-18 23:08:51
* @LastEditors: 渔火Arcadia
* @LastEditTime: 2022-12-26 14:25:01
* @FilePath: \Yunzai-Bot\plugins\ap-plugin\index.js
* @Description:
*
* Copyright (c) 2022 by 渔火Arcadia 1761869682@qq.com, All Rights Reserved.
*/
import fs from 'node:fs'
import { checkPackage } from './utils/dependencies_reminder.js'
logger.info('---------------')
logger.info(`aiPainting初始化`)
logger.info('---------------')
let passed = await checkPackage()
if (!passed) {
throw 'Missing necessary dependencies'
}
const files = fs.readdirSync('./plugins/ap-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 }
// logger.info('---------------')
// logger.info(`aiPainting载入完成`)
// logger.info('---------------')
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/shaohui360/ap-plugin.git
git@gitee.com:shaohui360/ap-plugin.git
shaohui360
ap-plugin
ap-plugin
main

搜索帮助