mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
44 lines
849 B
Python
44 lines
849 B
Python
from pathlib import Path
|
||
|
||
import nonebot
|
||
|
||
from zhenxun.configs.config import Config
|
||
|
||
Config.add_plugin_config(
|
||
"hook",
|
||
"CHECK_NOTICE_INFO_CD",
|
||
300,
|
||
help="群检测,个人权限检测等各种检测提示信息cd",
|
||
default_value=300,
|
||
type=int,
|
||
)
|
||
|
||
Config.add_plugin_config(
|
||
"hook",
|
||
"MALICIOUS_BAN_TIME",
|
||
30,
|
||
help="恶意命令触发检测触发后ban的时长(分钟)",
|
||
default_value=30,
|
||
type=int,
|
||
)
|
||
|
||
Config.add_plugin_config(
|
||
"hook",
|
||
"MALICIOUS_CHECK_TIME",
|
||
5,
|
||
help="恶意命令触发检测规定时间内(秒)",
|
||
default_value=5,
|
||
type=int,
|
||
)
|
||
|
||
Config.add_plugin_config(
|
||
"hook",
|
||
"MALICIOUS_BAN_COUNT",
|
||
6,
|
||
help="恶意命令触发检测最大触发次数",
|
||
default_value=6,
|
||
type=int,
|
||
)
|
||
|
||
nonebot.load_plugins(str(Path(__file__).parent.resolve()))
|