mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 06:12:53 +08:00
36 lines
473 B
Python
36 lines
473 B
Python
from pathlib import Path
|
|
|
|
from configs.config import Config
|
|
import nonebot
|
|
|
|
|
|
Config.add_plugin_config(
|
|
"genshin",
|
|
"mhyVersion",
|
|
"2.11.1"
|
|
)
|
|
|
|
Config.add_plugin_config(
|
|
"genshin",
|
|
"salt",
|
|
"xV8v4Qu54lUKrEYFZkJhB8cuOh9Asafs"
|
|
)
|
|
|
|
Config.add_plugin_config(
|
|
"genshin",
|
|
"n",
|
|
"h8w582wxwgqvahcdkpvdhbh2w9casgfl"
|
|
)
|
|
|
|
Config.add_plugin_config(
|
|
"genshin",
|
|
"client_type",
|
|
"5"
|
|
)
|
|
|
|
nonebot.load_plugins(str(Path(__file__).parent.resolve()))
|
|
|
|
|
|
|
|
|