From 54b959c7abb7e84d9469b8839a230168dd83579a Mon Sep 17 00:00:00 2001 From: yshtcn Date: Fri, 8 Sep 2023 12:05:49 +0800 Subject: [PATCH] =?UTF-8?q?-=20=E5=A2=9E=E5=8A=A0=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E8=8C=83=E4=BE=8B=20-=20=E6=B5=8B=E8=AF=95=E8=8C=83=E4=BE=8B?= =?UTF-8?q?=E5=8C=85=E5=90=AB=E6=96=B0=E5=8A=9F=E8=83=BD=E5=88=86=E9=9A=94?= =?UTF-8?q?=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot_config_example.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 bot_config_example.json diff --git a/bot_config_example.json b/bot_config_example.json new file mode 100644 index 0000000..2fbb292 --- /dev/null +++ b/bot_config_example.json @@ -0,0 +1,20 @@ + +[ + { + "main_bot_id": "YOUR_MAIN_BOT_ID_HERE", + "main_chat_id": "YOUR_MAIN_CHAT_ID_HERE", + "sub_bots": [ + { + "bot_id": "YOUR_SUB_BOT_ID_1", + "chat_id": "YOUR_SUB_CHAT_ID_1", + "keywords": ["test"], + "delimiter": "---split---" + }, + { + "bot_id": "YOUR_SUB_BOT_ID_2", + "chat_id": "YOUR_SUB_CHAT_ID_2", + "keywords": ["keyword3", "keyword4"] + } + ] + } +]