zhenxun_bot/plugins/shop/__init__.py
2021-11-04 16:11:50 +08:00

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")