2024-07-24 02:36:46 +08:00
|
|
|
import multiprocessing
|
2024-07-24 02:57:35 +08:00
|
|
|
import time
|
2024-07-24 02:36:46 +08:00
|
|
|
|
|
|
|
import nonebot
|
|
|
|
from nonebot import get_driver
|
|
|
|
|
|
|
|
from liteyuki.plugin import PluginMetadata
|
|
|
|
from liteyuki import get_bot
|
|
|
|
|
|
|
|
__plugin_metadata__ = PluginMetadata(
|
|
|
|
name="plugin_loader",
|
|
|
|
description="轻雪插件加载器",
|
|
|
|
usage="",
|
|
|
|
type="",
|
|
|
|
homepage=""
|
|
|
|
)
|
|
|
|
|
2024-07-24 02:57:35 +08:00
|
|
|
from src.utils import TempConfig, common_db
|
|
|
|
|
2024-07-24 02:36:46 +08:00
|
|
|
liteyuki = get_bot()
|
|
|
|
|
|
|
|
|
|
|
|
@liteyuki.on_after_start
|
|
|
|
def _():
|
2024-07-24 02:57:35 +08:00
|
|
|
temp_data = common_db.where_one(TempConfig(), default=TempConfig())
|
|
|
|
# 储存重启信息
|
|
|
|
if temp_data.data.get("reload", False):
|
|
|
|
delta_time = time.time() - temp_data.data.get("reload_time", 0)
|
|
|
|
temp_data.data["delta_time"] = delta_time
|
|
|
|
common_db.save(temp_data) # 更新数据
|
2024-07-24 02:36:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
@liteyuki.on_before_start
|
|
|
|
def _():
|
|
|
|
print("轻雪启动中")
|
|
|
|
|
|
|
|
|
|
|
|
@liteyuki.on_after_nonebot_init
|
|
|
|
async def _():
|
|
|
|
print("NoneBot初始化完成")
|
|
|
|
nonebot.load_plugin("src.liteyuki_main")
|