diff options
| author | 2023-11-15 09:40:59 +0800 | |
|---|---|---|
| committer | 2023-11-15 09:40:59 +0800 | |
| commit | a0a3e741a52391b0692563111bd5e5ebbd2937e8 (patch) | |
| tree | e99e0dc8651ff0df6bc03f655072734667573e3e /example/config.toml | |
| parent | 32f1a4f749b3cbb8d631c2f389ec91dbbded1ce8 (diff) | |
| download | HydroRoll-a0a3e741a52391b0692563111bd5e5ebbd2937e8.tar.gz HydroRoll-a0a3e741a52391b0692563111bd5e5ebbd2937e8.zip | |
fix: 在输入流时间内无法进行全匹配 (#80)
* chore(deps): add dingtalk
* chore: upgrade iamai version to 3.2.9
Diffstat (limited to 'example/config.toml')
| -rw-r--r-- | example/config.toml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/example/config.toml b/example/config.toml index 19e1e5f..32ca3cd 100644 --- a/example/config.toml +++ b/example/config.toml @@ -3,7 +3,11 @@ plugins = [] plugin_dirs = ["plugins"] rules = [] rule_dirs = ["rules"] -adapters = ["iamai.adapter.cqhttp","iamai.adapter.apscheduler"] +adapters = [ + "iamai.adapter.cqhttp", + "iamai.adapter.apscheduler", + "iamai.adapter.dingtalk" +] [bot.log] level = "INFO" @@ -16,6 +20,14 @@ port = 8080 url = "/cqhttp/ws" show_raw = false +[adapter.dingtalk] +adapter_type = "stream" +host = "127.0.0.1" +port = 8081 +url = "/dingtalk" +app_secret = "FnQU_a88xRpmcs3oPNXSgoQgm4TidGduVqKhLHR7_NgF6MLBUUbwYdE6MkOFWZFb" +app_key = "dingo7xu5djthkxpoick" + [adapter.apscheduler] scheduler_config = { "apscheduler.timezone" = "Asia/Shanghai" } |
