blob: f4f01f42d63e3410c406a01ae92c1d78d8a8c757 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
from plugins.alicebot_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。"""
|