blob: b60c27653dd6214347e01dbcc31e6e5e07ee251b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
from typing import Set, Optional
from plugins.iamai_plugin_base import CommandPluginConfig
class Config(CommandPluginConfig):
__config_name__ = "plugin_send"
command: Set[str] = {"send"}
"""命令文本。"""
send_user_id: int = 0
"""发送消息的对象的 QQ 号码。"""
send_success_msg: Optional[str] = None
"""发送成功时回复的消息,设置为 None 表示不发送任何消息。"""
send_filed_msg: Optional[str] = "发送失败:{message}"
"""发送失败时回复的消息。"""
|