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

49 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from configs.config import Config
import nonebot
Config.add_plugin_config(
"image_management",
"IMAGE_DIR_LIST",
["美图", "萝莉", "壁纸"],
name="图库操作",
help_="公开图库列表,可自定义添加 [如果含有send_setu插件请不要添加色图库]",
default_value=[],
)
Config.add_plugin_config(
"image_management",
"WITHDRAW_IMAGE_MESSAGE",
(0, 1),
name="图库操作",
help_="自动撤回参1延迟撤回发送图库图片的时间(秒)0 为关闭 | 参2监控聊天类型0(私聊) 1(群聊) 2(群聊+私聊)",
default_value=(0, 1),
)
Config.add_plugin_config(
"image_management:delete_img",
"DELETE_IMAGE_LEVEL [LEVEL]",
7,
help_="删除图库图片需要的管理员等级",
default_value=7,
)
Config.add_plugin_config(
"image_management:move_img",
"MOVE_IMAGE_LEVEL [LEVEL]",
7,
help_="移动图库图片需要的管理员等级",
default_value=7,
)
Config.add_plugin_config(
"image_management:upload_img",
"UPLOAD_IMAGE_LEVEL [LEVEL]",
6,
help_="上传图库图片需要的管理员等级",
default_value=6,
)
nonebot.load_plugins("plugins/image_management")