zhenxun_bot/basic_plugins/shop/__init__.py

15 lines
249 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
2022-01-05 22:32:59 +08:00
nonebot.load_plugins("basic_plugins/shop")