mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
27 lines
346 B
Python
27 lines
346 B
Python
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",
|
|
"client_type",
|
|
"5"
|
|
)
|
|
|
|
nonebot.load_plugins("plugins/genshin/query_user")
|
|
|
|
|
|
|