aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugins/alicebot_plugin_reply/config.py
blob: e024fb6b32a17c6f83d888b4c3c0fcaebc1d70ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
from plugins.iamai_plugin_base import CommandPluginConfig


class Config(CommandPluginConfig):
    __config_name__ = "plugin_reply"
    data_type: str = "json"
    """数据类型,目前只支持 json。"""
    data_file: str = "data/reply_data.json"
    """数据文件位置。"""
    ignore_case: bool = True
    """是否忽略大小写,默认为 True。"""