mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
3a2c672aed
* `#刻晴排行` 命令会触发排行更新,防止部分排行错位 * `#喵喵设置` 部分配置项及功能改进 * 其余一些已知问题修正及改进
13 lines
209 B
JavaScript
13 lines
209 B
JavaScript
import Cfg from './Cfg.js'
|
|
import render from './common-lib/render.js'
|
|
|
|
function sleep (ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms))
|
|
}
|
|
|
|
export default {
|
|
render,
|
|
cfg: Cfg.get,
|
|
sleep
|
|
}
|