blob: 717b7b292be6d6b0122e1e6ff9ced2e8e0951f2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
from typing import Set
from plugins.hydroroll_plugin_base import CommandPluginConfig
class Config(CommandPluginConfig):
__config_name__ = "plugin_bot_info"
command: Set[str] = {"bot"}
"""命令文本。"""
message_str: str = "{message}"
"""最终发送消息的格式。"""
|