zhenxun_bot/plugins/shop/__init__.py

15 lines
243 B
Python
Raw Normal View History

2021-10-03 14:24:07 +08:00
import nonebot
2021-11-04 16:11:50 +08:00
from configs.config import Config
2021-10-03 14:24:07 +08:00
2021-11-04 16:11:50 +08:00
Config.add_plugin_config(
"shop",
"IMPORT_DEFAULT_SHOP_GOODS",
True,
help_="导入商店自带的三个商品",
default_value=True
)
2021-10-03 14:24:07 +08:00
2021-11-04 16:11:50 +08:00
nonebot.load_plugins("plugins/shop")