7 Star 109 Fork 3

听语惊花/auto-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 851 Bytes
一键复制 编辑 原始数据 按行查看 历史
听语惊花 提交于 2023-10-14 20:48 . 更新版本
import fs from 'node:fs'
import setting from './model/setting.js'
logger.info('---------!_!---------')
logger.info('自动化插件1.0.5载入成功')
const files = fs
.readdirSync('./plugins/auto-plugin/app')
.filter((file) => file.endsWith('.js'))
let apps = {}
for (let file of files) {
let name = file.replace('.js', '')
apps[name] = (await import(`./app/${file}`))[name]
}
setTimeout(async function () {
// 群名片复位
let GroupNameConfig = setting.getConfig('autoGroupName')
if (GroupNameConfig.enable) {
Bot.gl.forEach((v, k) => {
try {
Bot.pickGroup(k).setCard(Bot.uin, Bot.nickname)
} catch (e) {
logger.info('【自动化插件】未能完成群名片复位,建议手动完成')
}
})
}
}, 1000)
let index = { auto: {} }
export const auto = index.auto || {}
export { apps }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/Nwflower/auto-plugin.git
[email protected]:Nwflower/auto-plugin.git
Nwflower
auto-plugin
auto-plugin
master

搜索帮助