14 Star 174 Fork 21

Hello World/Y-Tian-Plugin for Yunzai-Bot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.73 KB
一键复制 编辑 原始数据 按行查看 历史
yuanpluss 提交于 2024-12-14 23:16 . 3
import fs from 'node:fs'
import chalk from 'chalk'
if (!global.segment) {
global.segment = (await import("oicq")).segment
}
const files = fs.readdirSync('./plugins/y-tian-plugin/apps').filter(file => file.endsWith('.js'))
let ret = []
let apps = {} // 将 apps 声明移到 try 块外部
const greenText = chalk.green.bold
logger.info(greenText('Y-Tian-plugin加载中. . .'))
logger.info(greenText(`
██╗ ██╗████████╗██╗ █████╗ ███╗ ██╗
██║ ██║╚══██╔══╝██║██╔══██╗████╗ ██║
██║ ██║ ██║ ██║███████║██╔██╗ ██║
██║ ██║ ██║ ██║██╔══██║██║╚██╗██║
╚██████╔╝ ██║ ██║██║ ██║██║ ╚████║
╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝
`))
logger.info(greenText('Y-Tian-plugin加载完毕'))
logger.info(greenText('作者-鸢 & 天球生物'))
logger.info(greenText('-----------💬 推荐加入我们的群聊:📱 QQ 群号: 912701273----------'))
try {
ret = await Promise.allSettled(
files.map(file => import(`./apps/${file}`))
)
for (let i in files) {
const name = files[i].replace('.js', '')
if (ret[i].status !== 'fulfilled') {
logger.error(`载入插件错误:${chalk.red(name)}`)
logger.error(ret[i].reason)
continue
}
apps[name] = ret[i].value[Object.keys(ret[i].value)[0]]
}
} catch (error) {
logger.error('加载插件时发生错误:', error)
}
export { apps }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wan13877501248/y-tian-plugin.git
git@gitee.com:wan13877501248/y-tian-plugin.git
wan13877501248
y-tian-plugin
Y-Tian-Plugin for Yunzai-Bot
master

搜索帮助