LiteyukiBot/src/liteyuki_main/__init__.py

20 lines
658 B
Python
Raw Normal View History

2024-03-18 10:21:56 +00:00
import nonebot
from nonebot.plugin import PluginMetadata
2024-03-18 16:27:40 +00:00
from src.utils.language import get_system_lang
from .loader import *
from .webdash import *
2024-03-18 10:21:56 +00:00
__author__ = "snowykami"
__plugin_meta__ = PluginMetadata(
name="轻雪主程序",
description="轻雪主程序插件,包含了许多初始化的功能",
usage="",
homepage="https://github.com/snowykami/LiteyukiBot",
)
2024-03-18 16:27:40 +00:00
from src.utils.config import config
2024-03-18 10:21:56 +00:00
2024-03-18 16:27:40 +00:00
sys_lang = get_system_lang()
nonebot.logger.info(sys_lang.get("main.current_language", LANG=sys_lang.get("language.name")))
2024-03-19 05:16:25 +00:00
nonebot.logger.info(sys_lang.get("main.enable_webdash", URL=f"http://127.0.0.1:{config.get('port', 8080)}"))