aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugins/alicebot_plugin_echo/config.py
blob: b1fe445e46f7dbf0408c79dc6da48ed7c1f27c21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from typing import Set

from plugins.iamai_plugin_base import CommandPluginConfig


class Config(CommandPluginConfig):
    __config_name__ = "plugin_echo"
    command: Set[str] = {"echo"}
    """命令文本。"""
    message_str: str = "复读{user_name}: {message}"
    """最终发送消息的格式。"""