mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
17 lines
271 B
Python
17 lines
271 B
Python
from configs.config import Config
|
|
import nonebot
|
|
|
|
|
|
Config.add_plugin_config(
|
|
"word_bank",
|
|
"WORD_BANK_LEVEL [LEVEL]",
|
|
5,
|
|
name="词库问答",
|
|
help_="设置增删词库的权限等级",
|
|
default_value=5
|
|
)
|
|
|
|
|
|
nonebot.load_plugins("plugins/word_bank")
|
|
|