mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
27 lines
850 B
JavaScript
27 lines
850 B
JavaScript
// 适配V3 Yunzai,将index.js移至app/index.js
|
||
import { currentVersion, isV3 } from './components/Changelog.js'
|
||
import Data from './components/Data.js'
|
||
|
||
export * from './apps/index.js'
|
||
let index = { miao: {} }
|
||
if (isV3) {
|
||
index = await Data.importModule('/plugins/miao-plugin/adapter', 'index.js')
|
||
console.log(index)
|
||
}
|
||
export const miao = index.miao || {}
|
||
|
||
console.log(`喵喵插件${currentVersion}初始化~`)
|
||
|
||
setTimeout(async function () {
|
||
let msgStr = await redis.get('miao:restart-msg')
|
||
let relpyPrivate = async function () {
|
||
}
|
||
if (msgStr) {
|
||
let msg = JSON.parse(msgStr)
|
||
await relpyPrivate(msg.qq, msg.msg)
|
||
await redis.del('miao:restart-msg')
|
||
let msgs = [`当前喵喵版本: ${currentVersion}`, '您可使用 #喵喵版本 命令查看更新信息']
|
||
await relpyPrivate(msg.qq, msgs.join('\n'))
|
||
}
|
||
}, 1000)
|