2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 11:40:51 +08:00
xiaoyao-cvs-plugin/index.js

27 lines
866 B
JavaScript
Raw Normal View History

2022-07-24 11:46:05 +08:00
// 适配V3 Yunzai将index.js移至app/index.js
import { currentVersion, isV3 } from './components/Changelog.js'
import Data from './components/Data.js'
2022-06-24 13:33:00 +08:00
2022-07-24 11:46:05 +08:00
export * from './apps/index.js'
let index = { atlas: {} }
if (isV3) {
index = await Data.importModule('/plugins/xiaoyao-cvs-plugin/adapter', 'index.js')
console.log(index)
}
export const atlas = index.atlas || {}
2022-06-17 14:12:23 +08:00
2022-07-24 11:46:05 +08:00
console.log(`图鉴插件${currentVersion}初始化~`)
2022-06-17 14:12:23 +08:00
2022-07-24 11:46:05 +08:00
setTimeout(async function () {
let msgStr = await redis.get('xiaoyao:restart-msg')
let relpyPrivate = async function () {
}
if (msgStr) {
let msg = JSON.parse(msgStr)
await relpyPrivate(msg.qq, msg.msg)
await redis.del('xiaoyao:restart-msg')
let msgs = [`当前图鉴版本: ${currentVersion}`, '您可使用 #图鉴版本 命令查看更新信息']
await relpyPrivate(msg.qq, msgs.join('\n'))
}
}, 1000)