diff options
| author | 2023-04-23 23:36:31 +0800 | |
|---|---|---|
| committer | 2023-04-23 23:36:31 +0800 | |
| commit | 3c12e0e8d51699abeebb822414cf1ef3cc126f26 (patch) | |
| tree | ef22f40ca380eb6bb374c0cf6b9209c5e68297c8 /tests/plugins/iamai_plugin_reply/config.py | |
| parent | 10289094f39b0794ebc3d4c9a901ebb16adab1fc (diff) | |
| download | HydroRoll-3c12e0e8d51699abeebb822414cf1ef3cc126f26.tar.gz HydroRoll-3c12e0e8d51699abeebb822414cf1ef3cc126f26.zip | |
✨fix
Diffstat (limited to 'tests/plugins/iamai_plugin_reply/config.py')
| -rw-r--r-- | tests/plugins/iamai_plugin_reply/config.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/plugins/iamai_plugin_reply/config.py b/tests/plugins/iamai_plugin_reply/config.py new file mode 100644 index 0000000..e024fb6 --- /dev/null +++ b/tests/plugins/iamai_plugin_reply/config.py @@ -0,0 +1,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。""" |
