mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
15 lines
243 B
Python
15 lines
243 B
Python
import nonebot
|
|
from configs.config import Config
|
|
|
|
|
|
Config.add_plugin_config(
|
|
"shop",
|
|
"IMPORT_DEFAULT_SHOP_GOODS",
|
|
True,
|
|
help_="导入商店自带的三个商品",
|
|
default_value=True
|
|
)
|
|
|
|
|
|
nonebot.load_plugins("plugins/shop")
|