1 Star 1 Fork 0

zzyAJohn/auto-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.js 718 Bytes
一键复制 编辑 原始数据 按行查看 历史
听语惊花 提交于 2023-02-04 23:01 . 支持自定义内存占用字样
import fs from 'node:fs'
import setting from "./model/setting.js";
logger.info('---------!_!---------')
logger.info(`自动化插件1.0.2载入成功`)
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) => {
Bot.pickGroup(k).setCard(Bot.uin, Bot.nickname);
});
}
}, 1000)
let index = { auto: {} }
export const auto = index.auto || {}
export { apps }
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zzyAJohn/auto-plugin.git
[email protected]:zzyAJohn/auto-plugin.git
zzyAJohn
auto-plugin
auto-plugin
master

搜索帮助